diff --git a/getter.pl b/getter.pl new file mode 100755 index 0000000..e193f31 --- /dev/null +++ b/getter.pl @@ -0,0 +1,144 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +#use LWP::Simple; + +use Data::Dumper; + +my %param = ( + noDownload => 0, # ignore icons that need a download + changeColor => '#0000ff', # undef: do not change color +); + + + +my @conf = (); +{ + my $fh = undef; + open($fh, '<', 'icon.conf') or die "Cannot read icon.conf, because: $!"; + my $i=1; + while(my $line = <$fh>) { + $i++; + if($line=~m#^\s*([a-zA-Z_0-9]+)\s*=\s*(.*?)\s*(?:--.*)?$#) { + my ($name, $def) = ($1, $2); + push @conf, {row => $i, name => $name, origdef => $def}; + next + } elsif($line=~m/^\s*#/) { + next + } + $i--; + die "Bad line $i: $line" + } +} + +my %set = ( + phosphor => { + mode => 'file', + where => sub { + my $pwd = shift; + $pwd=~m#(.*):(.*)# or die "Bad icon in phsophor: '$pwd'"; + my ($kind, $name) = ($1, $2); + return "phosphor_orig/SVGs Flat/$kind/$name-$kind.svg" + }, + }, + material => { + mode => 'url', + where => sub { + my $pwd = shift; + return "https://fonts.gstatic.com/s/i/short-term/release/materialsymbolsoutlined/$pwd/default/24px.svg" + }, + }, +); + +for my $o(@conf) { + if($o->{origdef}=~m#^([a-z]+):(.*)#) { + my ($set, $name) = ($1, $2); + my $thisSet = $set{$set}; + die "Error in row $o->{row}: Cannot find icon set $set" unless defined $thisSet; + if($thisSet->{mode} eq 'file') { + #my $pp1 = $thisSet->{where}; + #my $pp2 = $name; + #$pp2=~s#:#/#g; + #my $path = "$pp1/$pp2.svg"; + my $path = $thisSet->{where}->($name); + my $rh = undef; + open($rh, '<', $path) or die "Could not read $path, because: $!"; + $o->{svg} = join '', <$rh> + } elsif($thisSet->{mode} eq 'url') { + next if $param{noDownload}; + my $path = $thisSet->{where}->($name); + $o->{svg} = qx(wget '$path' -O -); + } else { + die "Error in set definition $set: Mode $thisSet->{mode} is not implemented" + } + } elsif($o->{origdef}=~m#^/#) { + die ".. not allowed as part of a path in $o->{origdef}" if $o->{origdef}=~m#\.\.#; + my $fh = undef; + my $path = "input$o->{origdef}"; + open($fh, '<', $path) or die "could not read $path, because: $!"; + $o->{svg} = join '', <$fh> + } else { + die "Bad icon definition for icon $o->{name}: $o->{origdef}"; + } +} + + +print Data::Dumper::Dumper(\@conf); + + +mkdir("output"); + +for my $o(@conf) { + my $cont = $o->{svg}; + next unless $cont; + if($cont!~m#^\s*]*fill=[^<>]*>#) { + $cont=~s#^\s*(]*)>#$1 fill="currentColor"># + } + if($param{changeColor}) { + $cont=~s#fill="currentColor"#fill="$param{changeColor}"#g + } + my $fn = "output/$o->{name}.svg"; + my $wh = undef; + open($wh, '>', $fn) or die "Could not write $fn, because: $!"; + print $wh $cont +} + +my $fh = undef; +open($fh, '>', 'summary.html') or die "Could not write summary.html, because: $!"; +print $fh qq# + + + + + + + + + + + +#; + +for my $o(@conf) { + print $fh qq# + + + + + + + + +#; +} + +print $fh qq#
row +UniWorX-Ident + +Font + +Icon +
$o->{row}$o->{name}$o->{origdef}
+#; diff --git a/icon.conf b/icon.conf new file mode 100644 index 0000000..5900b6e --- /dev/null +++ b/icon.conf @@ -0,0 +1,90 @@ +IconNew=phosphor:fill:plant +IconOK=phosphor:bold:check +IconNotOK=phosphor:bold:x +IconWarning=phosphor:bold:exclamation-mark +IconProblem=phosphor:fill:lightning +IconVisible=phosphor:fill:eye +IconInvisible=phosphor:fill:eye-slash +IconCourse=phosphor:bold:chalkboard-teacher +IconCourseFavouriteManual=phosphor:fill:star +IconCourseFavouriteAutomatic=phosphor:fill:star-half +IconCourseFavouriteOff=/starSlash.svg +IconEnrolTrue=phosphor:bold:user-plus +IconEnrolFalse=phosphor:bold:user-minus +IconPlanned=phosphor:fill:gear +IconAnnounce=phosphor:fill:megaphone +IconExam=phosphor:fill:exam +IconExamRegisterTrue=phosphor:fill:calendar-check +IconExamRegisterFalse=phosphor:fill:calendar-x +IconExamAutoOccurrenceNudgeUp=phosphor:bold:user-plus +IconExamAutoOccurrenceNudgeDown=phosphor:bold:user-minus +IconExamAutoOccurrenceIgnore=phosphor:bold:placeholder +IconExamAutoOccurrenceReconsider=phosphor:bold:users +IconCommentTrue=phosphor:fill:chat-text +IconCommentFalse=phosphor:fill:chat-slash +IconLink=phosphor:bold:link +IconFileDownload=phosphor:fill:file-arrow-down +IconFileUpload=phosphor:fill:file-arrow-up +IconFileZip=phosphor:fill:file-archive +IconFileCSV=phosphor:fill:file-csv +IconSFTQuestion=phosphor:fill:question +IconSFTHint=phosphor:bold:lifebuoy +IconSFTSolution=phosphor:fill:warning-circle +IconSFTMarking=phosphor:fill:check-circle +IconEmail=phosphor:bold:envelope +IconRegisterTemplate=phosphor:fill:file +IconNoCorrectors=phosphor:bold:user-minus +IconRemoveUser=phosphor:bold:user-minus +IconTooltipDefault=phosphor:fill:question +IconNotificationSuccess=phosphor:fill:check-circle +IconNotificationInfo=phosphor:fill:info +IconNotificationWarning=phosphor:fill:warning-circle +IconNotificationError=phosphor:fill:warning +IconNotificationNonactive=material:info_i +IconFavourite=phosphor:fill:star +IconLanguage=phosphor:fill:flag +IconNavContainerClose=phosphor:bold:caret-up +IconPageActionChildrenClose=phosphor:bold:caret-up +IconMenuNews=phosphor:fill:megaphone +IconMenuHelp=phosphor:bold:question-mark +IconMenuProfile=phosphor:fill:gear +IconMenuLogin=phosphor:fill:sign-in +IconMenuLogout=phosphor:fill:sign-out +IconBreadcrumbsHome=phosphor:fill:house +IconMenuExtra=phosphor:fill:dots-three-outline +IconMenuCourseList=phosphor:bold:chalkboard-teacher +IconMenuCorrections=phosphor:bold:check +IconMenuExams=phosphor:fill:exam +IconMenuAdmin=phosphor:fill:screwdriver +IconMenuLms=phosphor:bold:list-checks +IconMenuQualification=phosphor:fill:graduation-cap +IconPageActionPrimaryExpand=phosphor:bold:list +IconPageActionSecondary=phosphor:fill:dots-three-outline +IconBreadcrumbSeparator=phosphor:bold:caret-right +IconFileUploadSession=phosphor:fill:file-arrow-up +IconStandaloneFieldError=phosphor:bold:exclamation-mark +IconFileUser=phosphor:fill:user +IconNotification=phosphor:bold:envelope +IconNotificationSent=phosphor:bold:envelope-open +IconNoNotification=phosphor:fill:bell-slash +IconPersonalIdentification=phosphor:fill:identification-card +IconMenuWorkflows=phosphor:bold:line-segments +IconVideo=phosphor:fill:video-camera +IconSubmissionUserDuplicate=phosphor:fill:files +IconSubmissionNoUsers=phosphor:bold:user-minus +IconReset=phosphor:bold:arrow-counter-clockwise +IconBlocked=phosphor:bold:prohibit +IconCertificate=phosphor:fill:seal-check +IconPrintCenter=phosphor:bold:envelope +IconLetter=phosphor:bold:envelope +IconAt=phosphor:bold:at +IconSupervisor=phosphor:fill:person +IconSupervisorForeign=phosphor:fill:alien +IconWaitingForUser=phosphor:bold:user-gear +IconExpired=phosphor:fill:hourglass-low +IconLocked=phosphor:fill:lock +IconUnlocked=phosphor:fill:lock-open +IconResetTries=phosphor:fill:box-arrow-up +IconCompany=phosphor:fill:building-office +IconEdit=phosphor:fill:pencil-line +IconUserEdit=material:person_edit diff --git a/input/starSlash.svg b/input/starSlash.svg new file mode 100644 index 0000000..7a433e4 --- /dev/null +++ b/input/starSlash.svg @@ -0,0 +1,42 @@ + + + + + + + diff --git a/konzept b/konzept new file mode 100644 index 0000000..09c7938 --- /dev/null +++ b/konzept @@ -0,0 +1,16 @@ +Icons von verschiedenen Quellen, nur mit MIT-Lizenz, zusammentragen. + +Es werden Icons manuell benannt und ausgewählt. Die manuell benannten Icons +können von + * Einem Iconsset stammen (z.B. Phosphoricons) + * Aus einer lokalen Quelle (svg) stammen + * Kombination von bereits benannten Icons sein + +Icons haben einen Linienzug, sowie eine Ansammlung von Mountpunkten; +jeder Bereich gehört einer von wenigen Farben an. + +Foo = phosphor:bold:bar -- aus phosphor laden +Bar = material:foo -- aus material laden +Meh = /foo -- lokales icon laden +Blubb = Bar[foo=>Meh] -- Icon Bar, aber in Mountpunkt foo stattdessen Meh einsetzen + diff --git a/phosphor_orig/SVGs Flat/bold/acorn-bold.svg b/phosphor_orig/SVGs Flat/bold/acorn-bold.svg new file mode 100644 index 0000000..e09f423 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/acorn-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/address-book-bold.svg b/phosphor_orig/SVGs Flat/bold/address-book-bold.svg new file mode 100644 index 0000000..8f14301 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/address-book-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/address-book-tabs-bold.svg b/phosphor_orig/SVGs Flat/bold/address-book-tabs-bold.svg new file mode 100644 index 0000000..b2b3c40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/address-book-tabs-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/air-traffic-control-bold.svg b/phosphor_orig/SVGs Flat/bold/air-traffic-control-bold.svg new file mode 100644 index 0000000..1ba3eee --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/air-traffic-control-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/airplane-bold.svg b/phosphor_orig/SVGs Flat/bold/airplane-bold.svg new file mode 100644 index 0000000..3b49874 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/airplane-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/airplane-in-flight-bold.svg b/phosphor_orig/SVGs Flat/bold/airplane-in-flight-bold.svg new file mode 100644 index 0000000..f43657f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/airplane-in-flight-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/airplane-landing-bold.svg b/phosphor_orig/SVGs Flat/bold/airplane-landing-bold.svg new file mode 100644 index 0000000..a1ca2b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/airplane-landing-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/airplane-takeoff-bold.svg b/phosphor_orig/SVGs Flat/bold/airplane-takeoff-bold.svg new file mode 100644 index 0000000..bec91fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/airplane-takeoff-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/airplane-taxiing-bold.svg b/phosphor_orig/SVGs Flat/bold/airplane-taxiing-bold.svg new file mode 100644 index 0000000..4210dae --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/airplane-taxiing-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/airplane-tilt-bold.svg b/phosphor_orig/SVGs Flat/bold/airplane-tilt-bold.svg new file mode 100644 index 0000000..107dc16 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/airplane-tilt-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/airplay-bold.svg b/phosphor_orig/SVGs Flat/bold/airplay-bold.svg new file mode 100644 index 0000000..28dae4c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/airplay-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/alarm-bold.svg b/phosphor_orig/SVGs Flat/bold/alarm-bold.svg new file mode 100644 index 0000000..30711ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/alarm-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/alien-bold.svg b/phosphor_orig/SVGs Flat/bold/alien-bold.svg new file mode 100644 index 0000000..0f3ef2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/alien-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/align-bottom-bold.svg b/phosphor_orig/SVGs Flat/bold/align-bottom-bold.svg new file mode 100644 index 0000000..2ee9e40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/align-bottom-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/align-bottom-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/align-bottom-simple-bold.svg new file mode 100644 index 0000000..cacc09b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/align-bottom-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/align-center-horizontal-bold.svg b/phosphor_orig/SVGs Flat/bold/align-center-horizontal-bold.svg new file mode 100644 index 0000000..5d2a45c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/align-center-horizontal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/align-center-horizontal-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/align-center-horizontal-simple-bold.svg new file mode 100644 index 0000000..0411ade --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/align-center-horizontal-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/align-center-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/align-center-vertical-bold.svg new file mode 100644 index 0000000..95d3498 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/align-center-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/align-center-vertical-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/align-center-vertical-simple-bold.svg new file mode 100644 index 0000000..7c5b92c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/align-center-vertical-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/align-left-bold.svg b/phosphor_orig/SVGs Flat/bold/align-left-bold.svg new file mode 100644 index 0000000..6ee7bcc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/align-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/align-left-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/align-left-simple-bold.svg new file mode 100644 index 0000000..042e0f0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/align-left-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/align-right-bold.svg b/phosphor_orig/SVGs Flat/bold/align-right-bold.svg new file mode 100644 index 0000000..8e6ee54 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/align-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/align-right-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/align-right-simple-bold.svg new file mode 100644 index 0000000..2d3d935 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/align-right-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/align-top-bold.svg b/phosphor_orig/SVGs Flat/bold/align-top-bold.svg new file mode 100644 index 0000000..d314d5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/align-top-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/align-top-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/align-top-simple-bold.svg new file mode 100644 index 0000000..c1c3000 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/align-top-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/amazon-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/amazon-logo-bold.svg new file mode 100644 index 0000000..2e5ebe1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/amazon-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/ambulance-bold.svg b/phosphor_orig/SVGs Flat/bold/ambulance-bold.svg new file mode 100644 index 0000000..edd7260 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/ambulance-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/anchor-bold.svg b/phosphor_orig/SVGs Flat/bold/anchor-bold.svg new file mode 100644 index 0000000..a9a6c55 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/anchor-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/anchor-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/anchor-simple-bold.svg new file mode 100644 index 0000000..ca9bca4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/anchor-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/android-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/android-logo-bold.svg new file mode 100644 index 0000000..d2f9d7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/android-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/angle-bold.svg b/phosphor_orig/SVGs Flat/bold/angle-bold.svg new file mode 100644 index 0000000..8a1d4e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/angle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/angular-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/angular-logo-bold.svg new file mode 100644 index 0000000..6647d04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/angular-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/aperture-bold.svg b/phosphor_orig/SVGs Flat/bold/aperture-bold.svg new file mode 100644 index 0000000..5097707 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/aperture-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/app-store-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/app-store-logo-bold.svg new file mode 100644 index 0000000..53d0d31 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/app-store-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/app-window-bold.svg b/phosphor_orig/SVGs Flat/bold/app-window-bold.svg new file mode 100644 index 0000000..dab8cb7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/app-window-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/apple-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/apple-logo-bold.svg new file mode 100644 index 0000000..1e3af8c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/apple-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/apple-podcasts-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/apple-podcasts-logo-bold.svg new file mode 100644 index 0000000..d161c71 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/apple-podcasts-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/approximate-equals-bold.svg b/phosphor_orig/SVGs Flat/bold/approximate-equals-bold.svg new file mode 100644 index 0000000..78ae497 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/approximate-equals-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/archive-bold.svg b/phosphor_orig/SVGs Flat/bold/archive-bold.svg new file mode 100644 index 0000000..ca65334 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/archive-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/armchair-bold.svg b/phosphor_orig/SVGs Flat/bold/armchair-bold.svg new file mode 100644 index 0000000..4fd89ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/armchair-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-arc-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-arc-left-bold.svg new file mode 100644 index 0000000..79de42e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-arc-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-arc-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-arc-right-bold.svg new file mode 100644 index 0000000..09a3bc8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-arc-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-bend-double-up-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-bend-double-up-left-bold.svg new file mode 100644 index 0000000..ba37d81 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-bend-double-up-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-bend-double-up-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-bend-double-up-right-bold.svg new file mode 100644 index 0000000..d9680b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-bend-double-up-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-bend-down-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-bend-down-left-bold.svg new file mode 100644 index 0000000..e019221 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-bend-down-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-bend-down-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-bend-down-right-bold.svg new file mode 100644 index 0000000..4c36bdf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-bend-down-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-bend-left-down-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-bend-left-down-bold.svg new file mode 100644 index 0000000..4889643 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-bend-left-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-bend-left-up-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-bend-left-up-bold.svg new file mode 100644 index 0000000..bcfef26 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-bend-left-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-bend-right-down-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-bend-right-down-bold.svg new file mode 100644 index 0000000..511394c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-bend-right-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-bend-right-up-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-bend-right-up-bold.svg new file mode 100644 index 0000000..b57ed3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-bend-right-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-bend-up-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-bend-up-left-bold.svg new file mode 100644 index 0000000..879d88d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-bend-up-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-bend-up-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-bend-up-right-bold.svg new file mode 100644 index 0000000..29b29d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-bend-up-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-circle-down-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-circle-down-bold.svg new file mode 100644 index 0000000..31d97d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-circle-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-circle-down-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-circle-down-left-bold.svg new file mode 100644 index 0000000..e9e1e47 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-circle-down-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-circle-down-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-circle-down-right-bold.svg new file mode 100644 index 0000000..88ed576 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-circle-down-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-circle-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-circle-left-bold.svg new file mode 100644 index 0000000..13fe625 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-circle-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-circle-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-circle-right-bold.svg new file mode 100644 index 0000000..1278e51 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-circle-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-circle-up-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-circle-up-bold.svg new file mode 100644 index 0000000..84fa85b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-circle-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-circle-up-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-circle-up-left-bold.svg new file mode 100644 index 0000000..cc83b6c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-circle-up-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-circle-up-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-circle-up-right-bold.svg new file mode 100644 index 0000000..a357673 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-circle-up-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-clockwise-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-clockwise-bold.svg new file mode 100644 index 0000000..8873a3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-clockwise-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-counter-clockwise-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-counter-clockwise-bold.svg new file mode 100644 index 0000000..68026ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-counter-clockwise-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-down-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-down-bold.svg new file mode 100644 index 0000000..23210cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-down-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-down-left-bold.svg new file mode 100644 index 0000000..d2703d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-down-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-down-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-down-right-bold.svg new file mode 100644 index 0000000..16dcf95 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-down-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-elbow-down-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-elbow-down-left-bold.svg new file mode 100644 index 0000000..6f8c1b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-elbow-down-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-elbow-down-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-elbow-down-right-bold.svg new file mode 100644 index 0000000..2effb2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-elbow-down-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-elbow-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-elbow-left-bold.svg new file mode 100644 index 0000000..2713457 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-elbow-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-elbow-left-down-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-elbow-left-down-bold.svg new file mode 100644 index 0000000..14f0332 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-elbow-left-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-elbow-left-up-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-elbow-left-up-bold.svg new file mode 100644 index 0000000..c4b0eea --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-elbow-left-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-elbow-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-elbow-right-bold.svg new file mode 100644 index 0000000..4a9eb33 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-elbow-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-elbow-right-down-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-elbow-right-down-bold.svg new file mode 100644 index 0000000..fb39d06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-elbow-right-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-elbow-right-up-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-elbow-right-up-bold.svg new file mode 100644 index 0000000..e13e95b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-elbow-right-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-elbow-up-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-elbow-up-left-bold.svg new file mode 100644 index 0000000..5317aa5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-elbow-up-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-elbow-up-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-elbow-up-right-bold.svg new file mode 100644 index 0000000..b3b78b0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-elbow-up-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-fat-down-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-fat-down-bold.svg new file mode 100644 index 0000000..61dc064 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-fat-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-fat-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-fat-left-bold.svg new file mode 100644 index 0000000..253d6e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-fat-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-fat-line-down-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-fat-line-down-bold.svg new file mode 100644 index 0000000..2ecb74b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-fat-line-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-fat-line-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-fat-line-left-bold.svg new file mode 100644 index 0000000..a15962e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-fat-line-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-fat-line-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-fat-line-right-bold.svg new file mode 100644 index 0000000..af904be --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-fat-line-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-fat-line-up-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-fat-line-up-bold.svg new file mode 100644 index 0000000..cbad70e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-fat-line-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-fat-lines-down-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-fat-lines-down-bold.svg new file mode 100644 index 0000000..54abd7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-fat-lines-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-fat-lines-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-fat-lines-left-bold.svg new file mode 100644 index 0000000..b233aee --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-fat-lines-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-fat-lines-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-fat-lines-right-bold.svg new file mode 100644 index 0000000..be782a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-fat-lines-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-fat-lines-up-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-fat-lines-up-bold.svg new file mode 100644 index 0000000..f8165e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-fat-lines-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-fat-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-fat-right-bold.svg new file mode 100644 index 0000000..00fa284 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-fat-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-fat-up-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-fat-up-bold.svg new file mode 100644 index 0000000..54a78f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-fat-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-left-bold.svg new file mode 100644 index 0000000..9616e36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-line-down-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-line-down-bold.svg new file mode 100644 index 0000000..f08eb67 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-line-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-line-down-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-line-down-left-bold.svg new file mode 100644 index 0000000..5a95a18 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-line-down-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-line-down-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-line-down-right-bold.svg new file mode 100644 index 0000000..0cc87fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-line-down-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-line-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-line-left-bold.svg new file mode 100644 index 0000000..f1c369a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-line-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-line-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-line-right-bold.svg new file mode 100644 index 0000000..d414550 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-line-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-line-up-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-line-up-bold.svg new file mode 100644 index 0000000..4c22740 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-line-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-line-up-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-line-up-left-bold.svg new file mode 100644 index 0000000..7c65a36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-line-up-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-line-up-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-line-up-right-bold.svg new file mode 100644 index 0000000..4bada11 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-line-up-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-right-bold.svg new file mode 100644 index 0000000..f7bab32 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-square-down-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-square-down-bold.svg new file mode 100644 index 0000000..96a3d15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-square-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-square-down-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-square-down-left-bold.svg new file mode 100644 index 0000000..efd1d8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-square-down-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-square-down-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-square-down-right-bold.svg new file mode 100644 index 0000000..c2cff58 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-square-down-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-square-in-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-square-in-bold.svg new file mode 100644 index 0000000..ebea796 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-square-in-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-square-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-square-left-bold.svg new file mode 100644 index 0000000..91728f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-square-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-square-out-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-square-out-bold.svg new file mode 100644 index 0000000..0aa38ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-square-out-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-square-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-square-right-bold.svg new file mode 100644 index 0000000..3168fc3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-square-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-square-up-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-square-up-bold.svg new file mode 100644 index 0000000..2964e48 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-square-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-square-up-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-square-up-left-bold.svg new file mode 100644 index 0000000..2c0d9c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-square-up-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-square-up-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-square-up-right-bold.svg new file mode 100644 index 0000000..eea1829 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-square-up-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-u-down-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-u-down-left-bold.svg new file mode 100644 index 0000000..0d6d9ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-u-down-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-u-down-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-u-down-right-bold.svg new file mode 100644 index 0000000..ea229cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-u-down-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-u-left-down-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-u-left-down-bold.svg new file mode 100644 index 0000000..4ab4a85 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-u-left-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-u-left-up-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-u-left-up-bold.svg new file mode 100644 index 0000000..406afae --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-u-left-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-u-right-down-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-u-right-down-bold.svg new file mode 100644 index 0000000..e464368 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-u-right-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-u-right-up-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-u-right-up-bold.svg new file mode 100644 index 0000000..2b1b93c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-u-right-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-u-up-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-u-up-left-bold.svg new file mode 100644 index 0000000..0fde171 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-u-up-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-u-up-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-u-up-right-bold.svg new file mode 100644 index 0000000..e98a2f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-u-up-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-up-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-up-bold.svg new file mode 100644 index 0000000..3441eef --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-up-left-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-up-left-bold.svg new file mode 100644 index 0000000..f678479 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-up-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrow-up-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrow-up-right-bold.svg new file mode 100644 index 0000000..a5acef0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrow-up-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-clockwise-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-clockwise-bold.svg new file mode 100644 index 0000000..706059d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-clockwise-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-counter-clockwise-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-counter-clockwise-bold.svg new file mode 100644 index 0000000..833b669 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-counter-clockwise-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-down-up-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-down-up-bold.svg new file mode 100644 index 0000000..5c22efb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-down-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-horizontal-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-horizontal-bold.svg new file mode 100644 index 0000000..f91170a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-horizontal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-in-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-in-bold.svg new file mode 100644 index 0000000..3637eed --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-in-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-in-cardinal-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-in-cardinal-bold.svg new file mode 100644 index 0000000..babcdef --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-in-cardinal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-in-line-horizontal-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-in-line-horizontal-bold.svg new file mode 100644 index 0000000..65f97aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-in-line-horizontal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-in-line-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-in-line-vertical-bold.svg new file mode 100644 index 0000000..4bf2544 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-in-line-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-in-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-in-simple-bold.svg new file mode 100644 index 0000000..d7ba84d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-in-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-left-right-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-left-right-bold.svg new file mode 100644 index 0000000..db094b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-left-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-merge-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-merge-bold.svg new file mode 100644 index 0000000..8424a11 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-merge-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-out-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-out-bold.svg new file mode 100644 index 0000000..955ebbc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-out-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-out-cardinal-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-out-cardinal-bold.svg new file mode 100644 index 0000000..c700fa1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-out-cardinal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-out-line-horizontal-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-out-line-horizontal-bold.svg new file mode 100644 index 0000000..bd4f65a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-out-line-horizontal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-out-line-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-out-line-vertical-bold.svg new file mode 100644 index 0000000..210c808 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-out-line-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-out-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-out-simple-bold.svg new file mode 100644 index 0000000..b5e8de3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-out-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-split-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-split-bold.svg new file mode 100644 index 0000000..1356330 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-split-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/arrows-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/arrows-vertical-bold.svg new file mode 100644 index 0000000..46181f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/arrows-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/article-bold.svg b/phosphor_orig/SVGs Flat/bold/article-bold.svg new file mode 100644 index 0000000..528d503 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/article-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/article-medium-bold.svg b/phosphor_orig/SVGs Flat/bold/article-medium-bold.svg new file mode 100644 index 0000000..79f3a0c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/article-medium-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/article-ny-times-bold.svg b/phosphor_orig/SVGs Flat/bold/article-ny-times-bold.svg new file mode 100644 index 0000000..84e807f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/article-ny-times-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/asclepius-bold.svg b/phosphor_orig/SVGs Flat/bold/asclepius-bold.svg new file mode 100644 index 0000000..c249b2c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/asclepius-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/asterisk-bold.svg b/phosphor_orig/SVGs Flat/bold/asterisk-bold.svg new file mode 100644 index 0000000..5ce6fa7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/asterisk-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/asterisk-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/asterisk-simple-bold.svg new file mode 100644 index 0000000..fae7e5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/asterisk-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/at-bold.svg b/phosphor_orig/SVGs Flat/bold/at-bold.svg new file mode 100644 index 0000000..e61a52b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/at-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/atom-bold.svg b/phosphor_orig/SVGs Flat/bold/atom-bold.svg new file mode 100644 index 0000000..3cdd061 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/atom-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/avocado-bold.svg b/phosphor_orig/SVGs Flat/bold/avocado-bold.svg new file mode 100644 index 0000000..f3da508 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/avocado-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/axe-bold.svg b/phosphor_orig/SVGs Flat/bold/axe-bold.svg new file mode 100644 index 0000000..c583b28 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/axe-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/baby-bold.svg b/phosphor_orig/SVGs Flat/bold/baby-bold.svg new file mode 100644 index 0000000..3b9fbda --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/baby-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/baby-carriage-bold.svg b/phosphor_orig/SVGs Flat/bold/baby-carriage-bold.svg new file mode 100644 index 0000000..43e02e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/baby-carriage-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/backpack-bold.svg b/phosphor_orig/SVGs Flat/bold/backpack-bold.svg new file mode 100644 index 0000000..565b1a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/backpack-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/backspace-bold.svg b/phosphor_orig/SVGs Flat/bold/backspace-bold.svg new file mode 100644 index 0000000..28cfe56 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/backspace-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bag-bold.svg b/phosphor_orig/SVGs Flat/bold/bag-bold.svg new file mode 100644 index 0000000..4cd7e8e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bag-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bag-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/bag-simple-bold.svg new file mode 100644 index 0000000..f73cbb8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bag-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/balloon-bold.svg b/phosphor_orig/SVGs Flat/bold/balloon-bold.svg new file mode 100644 index 0000000..e2b2e8e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/balloon-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bandaids-bold.svg b/phosphor_orig/SVGs Flat/bold/bandaids-bold.svg new file mode 100644 index 0000000..efa5ff0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bandaids-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bank-bold.svg b/phosphor_orig/SVGs Flat/bold/bank-bold.svg new file mode 100644 index 0000000..96730d0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bank-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/barbell-bold.svg b/phosphor_orig/SVGs Flat/bold/barbell-bold.svg new file mode 100644 index 0000000..ad82442 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/barbell-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/barcode-bold.svg b/phosphor_orig/SVGs Flat/bold/barcode-bold.svg new file mode 100644 index 0000000..cbc38a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/barcode-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/barn-bold.svg b/phosphor_orig/SVGs Flat/bold/barn-bold.svg new file mode 100644 index 0000000..ceaf3bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/barn-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/barricade-bold.svg b/phosphor_orig/SVGs Flat/bold/barricade-bold.svg new file mode 100644 index 0000000..cf4ed22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/barricade-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/baseball-bold.svg b/phosphor_orig/SVGs Flat/bold/baseball-bold.svg new file mode 100644 index 0000000..e95503a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/baseball-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/baseball-cap-bold.svg b/phosphor_orig/SVGs Flat/bold/baseball-cap-bold.svg new file mode 100644 index 0000000..1e495b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/baseball-cap-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/baseball-helmet-bold.svg b/phosphor_orig/SVGs Flat/bold/baseball-helmet-bold.svg new file mode 100644 index 0000000..9a21d0b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/baseball-helmet-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/basket-bold.svg b/phosphor_orig/SVGs Flat/bold/basket-bold.svg new file mode 100644 index 0000000..58a2dd0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/basket-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/basketball-bold.svg b/phosphor_orig/SVGs Flat/bold/basketball-bold.svg new file mode 100644 index 0000000..a7ea0b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/basketball-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bathtub-bold.svg b/phosphor_orig/SVGs Flat/bold/bathtub-bold.svg new file mode 100644 index 0000000..c8349f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bathtub-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-charging-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-charging-bold.svg new file mode 100644 index 0000000..d379a7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-charging-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-charging-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-charging-vertical-bold.svg new file mode 100644 index 0000000..54b8d2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-charging-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-empty-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-empty-bold.svg new file mode 100644 index 0000000..53d4a2c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-empty-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-full-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-full-bold.svg new file mode 100644 index 0000000..225a345 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-full-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-high-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-high-bold.svg new file mode 100644 index 0000000..8015a6a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-high-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-low-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-low-bold.svg new file mode 100644 index 0000000..f3ed2c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-low-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-medium-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-medium-bold.svg new file mode 100644 index 0000000..1846e64 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-medium-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-plus-bold.svg new file mode 100644 index 0000000..e5b7d4a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-plus-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-plus-vertical-bold.svg new file mode 100644 index 0000000..e2aa214 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-plus-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-vertical-empty-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-vertical-empty-bold.svg new file mode 100644 index 0000000..c8fdbcd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-vertical-empty-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-vertical-full-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-vertical-full-bold.svg new file mode 100644 index 0000000..cff2034 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-vertical-full-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-vertical-high-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-vertical-high-bold.svg new file mode 100644 index 0000000..a4f9951 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-vertical-high-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-vertical-low-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-vertical-low-bold.svg new file mode 100644 index 0000000..f264b60 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-vertical-low-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-vertical-medium-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-vertical-medium-bold.svg new file mode 100644 index 0000000..697c8ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-vertical-medium-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-warning-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-warning-bold.svg new file mode 100644 index 0000000..d24aa3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-warning-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/battery-warning-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/battery-warning-vertical-bold.svg new file mode 100644 index 0000000..268499b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/battery-warning-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/beach-ball-bold.svg b/phosphor_orig/SVGs Flat/bold/beach-ball-bold.svg new file mode 100644 index 0000000..0921ac8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/beach-ball-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/beanie-bold.svg b/phosphor_orig/SVGs Flat/bold/beanie-bold.svg new file mode 100644 index 0000000..089801c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/beanie-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bed-bold.svg b/phosphor_orig/SVGs Flat/bold/bed-bold.svg new file mode 100644 index 0000000..79d931f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bed-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/beer-bottle-bold.svg b/phosphor_orig/SVGs Flat/bold/beer-bottle-bold.svg new file mode 100644 index 0000000..b9e119d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/beer-bottle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/beer-stein-bold.svg b/phosphor_orig/SVGs Flat/bold/beer-stein-bold.svg new file mode 100644 index 0000000..4f53f91 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/beer-stein-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/behance-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/behance-logo-bold.svg new file mode 100644 index 0000000..dbcaa59 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/behance-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bell-bold.svg b/phosphor_orig/SVGs Flat/bold/bell-bold.svg new file mode 100644 index 0000000..c100e73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bell-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bell-ringing-bold.svg b/phosphor_orig/SVGs Flat/bold/bell-ringing-bold.svg new file mode 100644 index 0000000..0873074 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bell-ringing-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bell-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/bell-simple-bold.svg new file mode 100644 index 0000000..8bb1370 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bell-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bell-simple-ringing-bold.svg b/phosphor_orig/SVGs Flat/bold/bell-simple-ringing-bold.svg new file mode 100644 index 0000000..2bc6f09 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bell-simple-ringing-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bell-simple-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/bell-simple-slash-bold.svg new file mode 100644 index 0000000..547c24d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bell-simple-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bell-simple-z-bold.svg b/phosphor_orig/SVGs Flat/bold/bell-simple-z-bold.svg new file mode 100644 index 0000000..71b3c97 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bell-simple-z-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bell-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/bell-slash-bold.svg new file mode 100644 index 0000000..885f47a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bell-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bell-z-bold.svg b/phosphor_orig/SVGs Flat/bold/bell-z-bold.svg new file mode 100644 index 0000000..ab90488 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bell-z-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/belt-bold.svg b/phosphor_orig/SVGs Flat/bold/belt-bold.svg new file mode 100644 index 0000000..875e550 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/belt-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bezier-curve-bold.svg b/phosphor_orig/SVGs Flat/bold/bezier-curve-bold.svg new file mode 100644 index 0000000..3324ae6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bezier-curve-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bicycle-bold.svg b/phosphor_orig/SVGs Flat/bold/bicycle-bold.svg new file mode 100644 index 0000000..c609906 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bicycle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/binary-bold.svg b/phosphor_orig/SVGs Flat/bold/binary-bold.svg new file mode 100644 index 0000000..330c012 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/binary-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/binoculars-bold.svg b/phosphor_orig/SVGs Flat/bold/binoculars-bold.svg new file mode 100644 index 0000000..5a14e3c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/binoculars-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/biohazard-bold.svg b/phosphor_orig/SVGs Flat/bold/biohazard-bold.svg new file mode 100644 index 0000000..5a019bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/biohazard-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bird-bold.svg b/phosphor_orig/SVGs Flat/bold/bird-bold.svg new file mode 100644 index 0000000..a654ee7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bird-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/blueprint-bold.svg b/phosphor_orig/SVGs Flat/bold/blueprint-bold.svg new file mode 100644 index 0000000..eb35ba6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/blueprint-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bluetooth-bold.svg b/phosphor_orig/SVGs Flat/bold/bluetooth-bold.svg new file mode 100644 index 0000000..7cecaed --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bluetooth-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bluetooth-connected-bold.svg b/phosphor_orig/SVGs Flat/bold/bluetooth-connected-bold.svg new file mode 100644 index 0000000..b179087 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bluetooth-connected-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bluetooth-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/bluetooth-slash-bold.svg new file mode 100644 index 0000000..6fd20a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bluetooth-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bluetooth-x-bold.svg b/phosphor_orig/SVGs Flat/bold/bluetooth-x-bold.svg new file mode 100644 index 0000000..c992a18 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bluetooth-x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/boat-bold.svg b/phosphor_orig/SVGs Flat/bold/boat-bold.svg new file mode 100644 index 0000000..82a14ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/boat-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bomb-bold.svg b/phosphor_orig/SVGs Flat/bold/bomb-bold.svg new file mode 100644 index 0000000..7560676 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bomb-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bone-bold.svg b/phosphor_orig/SVGs Flat/bold/bone-bold.svg new file mode 100644 index 0000000..b602ca5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bone-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/book-bold.svg b/phosphor_orig/SVGs Flat/bold/book-bold.svg new file mode 100644 index 0000000..b7549ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/book-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/book-bookmark-bold.svg b/phosphor_orig/SVGs Flat/bold/book-bookmark-bold.svg new file mode 100644 index 0000000..ba4b464 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/book-bookmark-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/book-open-bold.svg b/phosphor_orig/SVGs Flat/bold/book-open-bold.svg new file mode 100644 index 0000000..475b19e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/book-open-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/book-open-text-bold.svg b/phosphor_orig/SVGs Flat/bold/book-open-text-bold.svg new file mode 100644 index 0000000..0f381b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/book-open-text-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/book-user-bold.svg b/phosphor_orig/SVGs Flat/bold/book-user-bold.svg new file mode 100644 index 0000000..4567739 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/book-user-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bookmark-bold.svg b/phosphor_orig/SVGs Flat/bold/bookmark-bold.svg new file mode 100644 index 0000000..e0c1628 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bookmark-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bookmark-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/bookmark-simple-bold.svg new file mode 100644 index 0000000..b8503ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bookmark-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bookmarks-bold.svg b/phosphor_orig/SVGs Flat/bold/bookmarks-bold.svg new file mode 100644 index 0000000..26fa6be --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bookmarks-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bookmarks-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/bookmarks-simple-bold.svg new file mode 100644 index 0000000..bf98f10 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bookmarks-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/books-bold.svg b/phosphor_orig/SVGs Flat/bold/books-bold.svg new file mode 100644 index 0000000..cd6d798 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/books-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/boot-bold.svg b/phosphor_orig/SVGs Flat/bold/boot-bold.svg new file mode 100644 index 0000000..f6b052f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/boot-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/boules-bold.svg b/phosphor_orig/SVGs Flat/bold/boules-bold.svg new file mode 100644 index 0000000..07c93a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/boules-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bounding-box-bold.svg b/phosphor_orig/SVGs Flat/bold/bounding-box-bold.svg new file mode 100644 index 0000000..b21c220 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bounding-box-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bowl-food-bold.svg b/phosphor_orig/SVGs Flat/bold/bowl-food-bold.svg new file mode 100644 index 0000000..e8d3eab --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bowl-food-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bowl-steam-bold.svg b/phosphor_orig/SVGs Flat/bold/bowl-steam-bold.svg new file mode 100644 index 0000000..5602da3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bowl-steam-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bowling-ball-bold.svg b/phosphor_orig/SVGs Flat/bold/bowling-ball-bold.svg new file mode 100644 index 0000000..30cb188 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bowling-ball-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/box-arrow-down-bold.svg b/phosphor_orig/SVGs Flat/bold/box-arrow-down-bold.svg new file mode 100644 index 0000000..e92f19d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/box-arrow-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/box-arrow-up-bold.svg b/phosphor_orig/SVGs Flat/bold/box-arrow-up-bold.svg new file mode 100644 index 0000000..0ec9d17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/box-arrow-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/boxing-glove-bold.svg b/phosphor_orig/SVGs Flat/bold/boxing-glove-bold.svg new file mode 100644 index 0000000..2e6646d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/boxing-glove-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/brackets-angle-bold.svg b/phosphor_orig/SVGs Flat/bold/brackets-angle-bold.svg new file mode 100644 index 0000000..da88a12 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/brackets-angle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/brackets-curly-bold.svg b/phosphor_orig/SVGs Flat/bold/brackets-curly-bold.svg new file mode 100644 index 0000000..6ab4691 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/brackets-curly-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/brackets-round-bold.svg b/phosphor_orig/SVGs Flat/bold/brackets-round-bold.svg new file mode 100644 index 0000000..f6d72c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/brackets-round-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/brackets-square-bold.svg b/phosphor_orig/SVGs Flat/bold/brackets-square-bold.svg new file mode 100644 index 0000000..3954d30 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/brackets-square-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/brain-bold.svg b/phosphor_orig/SVGs Flat/bold/brain-bold.svg new file mode 100644 index 0000000..4aa9931 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/brain-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/brandy-bold.svg b/phosphor_orig/SVGs Flat/bold/brandy-bold.svg new file mode 100644 index 0000000..fb63156 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/brandy-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bread-bold.svg b/phosphor_orig/SVGs Flat/bold/bread-bold.svg new file mode 100644 index 0000000..ceee431 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bread-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bridge-bold.svg b/phosphor_orig/SVGs Flat/bold/bridge-bold.svg new file mode 100644 index 0000000..d766634 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bridge-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/briefcase-bold.svg b/phosphor_orig/SVGs Flat/bold/briefcase-bold.svg new file mode 100644 index 0000000..c7a9051 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/briefcase-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/briefcase-metal-bold.svg b/phosphor_orig/SVGs Flat/bold/briefcase-metal-bold.svg new file mode 100644 index 0000000..76f3f2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/briefcase-metal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/broadcast-bold.svg b/phosphor_orig/SVGs Flat/bold/broadcast-bold.svg new file mode 100644 index 0000000..1a4643e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/broadcast-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/broom-bold.svg b/phosphor_orig/SVGs Flat/bold/broom-bold.svg new file mode 100644 index 0000000..164e466 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/broom-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/browser-bold.svg b/phosphor_orig/SVGs Flat/bold/browser-bold.svg new file mode 100644 index 0000000..04b3a3f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/browser-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/browsers-bold.svg b/phosphor_orig/SVGs Flat/bold/browsers-bold.svg new file mode 100644 index 0000000..d5d466f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/browsers-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bug-beetle-bold.svg b/phosphor_orig/SVGs Flat/bold/bug-beetle-bold.svg new file mode 100644 index 0000000..c07d602 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bug-beetle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bug-bold.svg b/phosphor_orig/SVGs Flat/bold/bug-bold.svg new file mode 100644 index 0000000..0c993c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bug-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bug-droid-bold.svg b/phosphor_orig/SVGs Flat/bold/bug-droid-bold.svg new file mode 100644 index 0000000..88cc4e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bug-droid-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/building-apartment-bold.svg b/phosphor_orig/SVGs Flat/bold/building-apartment-bold.svg new file mode 100644 index 0000000..1b2e62b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/building-apartment-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/building-bold.svg b/phosphor_orig/SVGs Flat/bold/building-bold.svg new file mode 100644 index 0000000..67f30b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/building-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/building-office-bold.svg b/phosphor_orig/SVGs Flat/bold/building-office-bold.svg new file mode 100644 index 0000000..ca2dd4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/building-office-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/buildings-bold.svg b/phosphor_orig/SVGs Flat/bold/buildings-bold.svg new file mode 100644 index 0000000..93e7d89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/buildings-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bulldozer-bold.svg b/phosphor_orig/SVGs Flat/bold/bulldozer-bold.svg new file mode 100644 index 0000000..ac29343 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bulldozer-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/bus-bold.svg b/phosphor_orig/SVGs Flat/bold/bus-bold.svg new file mode 100644 index 0000000..30e84ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/bus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/butterfly-bold.svg b/phosphor_orig/SVGs Flat/bold/butterfly-bold.svg new file mode 100644 index 0000000..84874e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/butterfly-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cable-car-bold.svg b/phosphor_orig/SVGs Flat/bold/cable-car-bold.svg new file mode 100644 index 0000000..e5b5ad4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cable-car-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cactus-bold.svg b/phosphor_orig/SVGs Flat/bold/cactus-bold.svg new file mode 100644 index 0000000..85c03f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cactus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cake-bold.svg b/phosphor_orig/SVGs Flat/bold/cake-bold.svg new file mode 100644 index 0000000..f382fc8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cake-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/calculator-bold.svg b/phosphor_orig/SVGs Flat/bold/calculator-bold.svg new file mode 100644 index 0000000..08b4ffb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/calculator-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/calendar-blank-bold.svg b/phosphor_orig/SVGs Flat/bold/calendar-blank-bold.svg new file mode 100644 index 0000000..1f49f68 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/calendar-blank-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/calendar-bold.svg b/phosphor_orig/SVGs Flat/bold/calendar-bold.svg new file mode 100644 index 0000000..92c8146 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/calendar-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/calendar-check-bold.svg b/phosphor_orig/SVGs Flat/bold/calendar-check-bold.svg new file mode 100644 index 0000000..92c8890 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/calendar-check-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/calendar-dot-bold.svg b/phosphor_orig/SVGs Flat/bold/calendar-dot-bold.svg new file mode 100644 index 0000000..40244cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/calendar-dot-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/calendar-dots-bold.svg b/phosphor_orig/SVGs Flat/bold/calendar-dots-bold.svg new file mode 100644 index 0000000..8589262 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/calendar-dots-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/calendar-heart-bold.svg b/phosphor_orig/SVGs Flat/bold/calendar-heart-bold.svg new file mode 100644 index 0000000..d306394 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/calendar-heart-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/calendar-minus-bold.svg b/phosphor_orig/SVGs Flat/bold/calendar-minus-bold.svg new file mode 100644 index 0000000..e4ae65c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/calendar-minus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/calendar-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/calendar-plus-bold.svg new file mode 100644 index 0000000..a730450 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/calendar-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/calendar-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/calendar-slash-bold.svg new file mode 100644 index 0000000..d5dccc3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/calendar-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/calendar-star-bold.svg b/phosphor_orig/SVGs Flat/bold/calendar-star-bold.svg new file mode 100644 index 0000000..7ff78ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/calendar-star-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/calendar-x-bold.svg b/phosphor_orig/SVGs Flat/bold/calendar-x-bold.svg new file mode 100644 index 0000000..74c481c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/calendar-x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/call-bell-bold.svg b/phosphor_orig/SVGs Flat/bold/call-bell-bold.svg new file mode 100644 index 0000000..0f0c8b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/call-bell-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/camera-bold.svg b/phosphor_orig/SVGs Flat/bold/camera-bold.svg new file mode 100644 index 0000000..573a0fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/camera-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/camera-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/camera-plus-bold.svg new file mode 100644 index 0000000..58a72db --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/camera-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/camera-rotate-bold.svg b/phosphor_orig/SVGs Flat/bold/camera-rotate-bold.svg new file mode 100644 index 0000000..f381df2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/camera-rotate-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/camera-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/camera-slash-bold.svg new file mode 100644 index 0000000..0a16e46 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/camera-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/campfire-bold.svg b/phosphor_orig/SVGs Flat/bold/campfire-bold.svg new file mode 100644 index 0000000..a98886f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/campfire-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/car-battery-bold.svg b/phosphor_orig/SVGs Flat/bold/car-battery-bold.svg new file mode 100644 index 0000000..85a6e0b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/car-battery-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/car-bold.svg b/phosphor_orig/SVGs Flat/bold/car-bold.svg new file mode 100644 index 0000000..c8fe561 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/car-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/car-profile-bold.svg b/phosphor_orig/SVGs Flat/bold/car-profile-bold.svg new file mode 100644 index 0000000..ce7436d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/car-profile-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/car-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/car-simple-bold.svg new file mode 100644 index 0000000..d2c58f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/car-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cardholder-bold.svg b/phosphor_orig/SVGs Flat/bold/cardholder-bold.svg new file mode 100644 index 0000000..08ba5b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cardholder-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cards-bold.svg b/phosphor_orig/SVGs Flat/bold/cards-bold.svg new file mode 100644 index 0000000..fc0a0cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cards-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cards-three-bold.svg b/phosphor_orig/SVGs Flat/bold/cards-three-bold.svg new file mode 100644 index 0000000..928da68 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cards-three-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-circle-double-down-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-circle-double-down-bold.svg new file mode 100644 index 0000000..79bcdfe --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-circle-double-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-circle-double-left-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-circle-double-left-bold.svg new file mode 100644 index 0000000..9ba9734 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-circle-double-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-circle-double-right-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-circle-double-right-bold.svg new file mode 100644 index 0000000..a2306fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-circle-double-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-circle-double-up-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-circle-double-up-bold.svg new file mode 100644 index 0000000..575b0a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-circle-double-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-circle-down-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-circle-down-bold.svg new file mode 100644 index 0000000..6586917 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-circle-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-circle-left-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-circle-left-bold.svg new file mode 100644 index 0000000..6c75bd7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-circle-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-circle-right-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-circle-right-bold.svg new file mode 100644 index 0000000..f998c8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-circle-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-circle-up-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-circle-up-bold.svg new file mode 100644 index 0000000..6b20c92 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-circle-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-circle-up-down-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-circle-up-down-bold.svg new file mode 100644 index 0000000..021f503 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-circle-up-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-double-down-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-double-down-bold.svg new file mode 100644 index 0000000..581e018 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-double-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-double-left-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-double-left-bold.svg new file mode 100644 index 0000000..12d22a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-double-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-double-right-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-double-right-bold.svg new file mode 100644 index 0000000..65b3207 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-double-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-double-up-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-double-up-bold.svg new file mode 100644 index 0000000..8bf440f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-double-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-down-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-down-bold.svg new file mode 100644 index 0000000..781f655 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-left-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-left-bold.svg new file mode 100644 index 0000000..ec494ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-line-down-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-line-down-bold.svg new file mode 100644 index 0000000..fce4b85 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-line-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-line-left-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-line-left-bold.svg new file mode 100644 index 0000000..5faba13 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-line-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-line-right-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-line-right-bold.svg new file mode 100644 index 0000000..e39a0a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-line-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-line-up-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-line-up-bold.svg new file mode 100644 index 0000000..0106494 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-line-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-right-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-right-bold.svg new file mode 100644 index 0000000..8282a42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-up-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-up-bold.svg new file mode 100644 index 0000000..2f23826 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/caret-up-down-bold.svg b/phosphor_orig/SVGs Flat/bold/caret-up-down-bold.svg new file mode 100644 index 0000000..2712f29 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/caret-up-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/carrot-bold.svg b/phosphor_orig/SVGs Flat/bold/carrot-bold.svg new file mode 100644 index 0000000..d813b41 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/carrot-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cash-register-bold.svg b/phosphor_orig/SVGs Flat/bold/cash-register-bold.svg new file mode 100644 index 0000000..dccc923 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cash-register-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cassette-tape-bold.svg b/phosphor_orig/SVGs Flat/bold/cassette-tape-bold.svg new file mode 100644 index 0000000..56dc0ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cassette-tape-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/castle-turret-bold.svg b/phosphor_orig/SVGs Flat/bold/castle-turret-bold.svg new file mode 100644 index 0000000..3443aeb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/castle-turret-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cat-bold.svg b/phosphor_orig/SVGs Flat/bold/cat-bold.svg new file mode 100644 index 0000000..6fd9047 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cat-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cell-signal-full-bold.svg b/phosphor_orig/SVGs Flat/bold/cell-signal-full-bold.svg new file mode 100644 index 0000000..9acf87e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cell-signal-full-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cell-signal-high-bold.svg b/phosphor_orig/SVGs Flat/bold/cell-signal-high-bold.svg new file mode 100644 index 0000000..5310a61 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cell-signal-high-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cell-signal-low-bold.svg b/phosphor_orig/SVGs Flat/bold/cell-signal-low-bold.svg new file mode 100644 index 0000000..c1a6813 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cell-signal-low-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cell-signal-medium-bold.svg b/phosphor_orig/SVGs Flat/bold/cell-signal-medium-bold.svg new file mode 100644 index 0000000..ecd9d40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cell-signal-medium-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cell-signal-none-bold.svg b/phosphor_orig/SVGs Flat/bold/cell-signal-none-bold.svg new file mode 100644 index 0000000..20b6365 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cell-signal-none-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cell-signal-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/cell-signal-slash-bold.svg new file mode 100644 index 0000000..c201497 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cell-signal-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cell-signal-x-bold.svg b/phosphor_orig/SVGs Flat/bold/cell-signal-x-bold.svg new file mode 100644 index 0000000..8c03eab --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cell-signal-x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cell-tower-bold.svg b/phosphor_orig/SVGs Flat/bold/cell-tower-bold.svg new file mode 100644 index 0000000..2fe7c9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cell-tower-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/certificate-bold.svg b/phosphor_orig/SVGs Flat/bold/certificate-bold.svg new file mode 100644 index 0000000..141e202 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/certificate-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chair-bold.svg b/phosphor_orig/SVGs Flat/bold/chair-bold.svg new file mode 100644 index 0000000..cecc53c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chair-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chalkboard-bold.svg b/phosphor_orig/SVGs Flat/bold/chalkboard-bold.svg new file mode 100644 index 0000000..1052e0e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chalkboard-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chalkboard-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/chalkboard-simple-bold.svg new file mode 100644 index 0000000..da2a90d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chalkboard-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chalkboard-teacher-bold.svg b/phosphor_orig/SVGs Flat/bold/chalkboard-teacher-bold.svg new file mode 100644 index 0000000..d70266e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chalkboard-teacher-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/champagne-bold.svg b/phosphor_orig/SVGs Flat/bold/champagne-bold.svg new file mode 100644 index 0000000..0140d13 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/champagne-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/charging-station-bold.svg b/phosphor_orig/SVGs Flat/bold/charging-station-bold.svg new file mode 100644 index 0000000..37a54b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/charging-station-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chart-bar-bold.svg b/phosphor_orig/SVGs Flat/bold/chart-bar-bold.svg new file mode 100644 index 0000000..800a259 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chart-bar-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chart-bar-horizontal-bold.svg b/phosphor_orig/SVGs Flat/bold/chart-bar-horizontal-bold.svg new file mode 100644 index 0000000..e6c0512 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chart-bar-horizontal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chart-donut-bold.svg b/phosphor_orig/SVGs Flat/bold/chart-donut-bold.svg new file mode 100644 index 0000000..cf75646 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chart-donut-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chart-line-bold.svg b/phosphor_orig/SVGs Flat/bold/chart-line-bold.svg new file mode 100644 index 0000000..840660e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chart-line-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chart-line-down-bold.svg b/phosphor_orig/SVGs Flat/bold/chart-line-down-bold.svg new file mode 100644 index 0000000..596acbc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chart-line-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chart-line-up-bold.svg b/phosphor_orig/SVGs Flat/bold/chart-line-up-bold.svg new file mode 100644 index 0000000..43c7a1d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chart-line-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chart-pie-bold.svg b/phosphor_orig/SVGs Flat/bold/chart-pie-bold.svg new file mode 100644 index 0000000..430e1a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chart-pie-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chart-pie-slice-bold.svg b/phosphor_orig/SVGs Flat/bold/chart-pie-slice-bold.svg new file mode 100644 index 0000000..b9d077e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chart-pie-slice-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chart-polar-bold.svg b/phosphor_orig/SVGs Flat/bold/chart-polar-bold.svg new file mode 100644 index 0000000..8403be6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chart-polar-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chart-scatter-bold.svg b/phosphor_orig/SVGs Flat/bold/chart-scatter-bold.svg new file mode 100644 index 0000000..263af7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chart-scatter-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-bold.svg new file mode 100644 index 0000000..54aab0c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-centered-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-centered-bold.svg new file mode 100644 index 0000000..e103241 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-centered-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-centered-dots-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-centered-dots-bold.svg new file mode 100644 index 0000000..8cdeaa2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-centered-dots-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-centered-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-centered-slash-bold.svg new file mode 100644 index 0000000..4d675f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-centered-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-centered-text-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-centered-text-bold.svg new file mode 100644 index 0000000..04639d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-centered-text-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-circle-bold.svg new file mode 100644 index 0000000..dc7d2b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-circle-dots-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-circle-dots-bold.svg new file mode 100644 index 0000000..5e30739 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-circle-dots-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-circle-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-circle-slash-bold.svg new file mode 100644 index 0000000..bc4250b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-circle-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-circle-text-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-circle-text-bold.svg new file mode 100644 index 0000000..c706f2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-circle-text-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-dots-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-dots-bold.svg new file mode 100644 index 0000000..34e02ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-dots-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-slash-bold.svg new file mode 100644 index 0000000..ab6a882 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-teardrop-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-teardrop-bold.svg new file mode 100644 index 0000000..dbd46f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-teardrop-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-teardrop-dots-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-teardrop-dots-bold.svg new file mode 100644 index 0000000..a4681f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-teardrop-dots-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-teardrop-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-teardrop-slash-bold.svg new file mode 100644 index 0000000..21959b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-teardrop-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-teardrop-text-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-teardrop-text-bold.svg new file mode 100644 index 0000000..00615c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-teardrop-text-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chat-text-bold.svg b/phosphor_orig/SVGs Flat/bold/chat-text-bold.svg new file mode 100644 index 0000000..bc77e50 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chat-text-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chats-bold.svg b/phosphor_orig/SVGs Flat/bold/chats-bold.svg new file mode 100644 index 0000000..8f89cae --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chats-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chats-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/chats-circle-bold.svg new file mode 100644 index 0000000..cce321d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chats-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chats-teardrop-bold.svg b/phosphor_orig/SVGs Flat/bold/chats-teardrop-bold.svg new file mode 100644 index 0000000..ee8228d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chats-teardrop-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/check-bold.svg b/phosphor_orig/SVGs Flat/bold/check-bold.svg new file mode 100644 index 0000000..8766807 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/check-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/check-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/check-circle-bold.svg new file mode 100644 index 0000000..947aa0d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/check-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/check-fat-bold.svg b/phosphor_orig/SVGs Flat/bold/check-fat-bold.svg new file mode 100644 index 0000000..7f60e75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/check-fat-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/check-square-bold.svg b/phosphor_orig/SVGs Flat/bold/check-square-bold.svg new file mode 100644 index 0000000..8d49393 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/check-square-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/check-square-offset-bold.svg b/phosphor_orig/SVGs Flat/bold/check-square-offset-bold.svg new file mode 100644 index 0000000..df727a8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/check-square-offset-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/checkerboard-bold.svg b/phosphor_orig/SVGs Flat/bold/checkerboard-bold.svg new file mode 100644 index 0000000..eeffadc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/checkerboard-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/checks-bold.svg b/phosphor_orig/SVGs Flat/bold/checks-bold.svg new file mode 100644 index 0000000..a30044f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/checks-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cheers-bold.svg b/phosphor_orig/SVGs Flat/bold/cheers-bold.svg new file mode 100644 index 0000000..83ba8ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cheers-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cheese-bold.svg b/phosphor_orig/SVGs Flat/bold/cheese-bold.svg new file mode 100644 index 0000000..4214374 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cheese-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/chef-hat-bold.svg b/phosphor_orig/SVGs Flat/bold/chef-hat-bold.svg new file mode 100644 index 0000000..6b707cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/chef-hat-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cherries-bold.svg b/phosphor_orig/SVGs Flat/bold/cherries-bold.svg new file mode 100644 index 0000000..488da8d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cherries-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/church-bold.svg b/phosphor_orig/SVGs Flat/bold/church-bold.svg new file mode 100644 index 0000000..a488967 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/church-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cigarette-bold.svg b/phosphor_orig/SVGs Flat/bold/cigarette-bold.svg new file mode 100644 index 0000000..3facdf2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cigarette-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cigarette-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/cigarette-slash-bold.svg new file mode 100644 index 0000000..95a0841 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cigarette-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/circle-bold.svg b/phosphor_orig/SVGs Flat/bold/circle-bold.svg new file mode 100644 index 0000000..17cdc1e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/circle-dashed-bold.svg b/phosphor_orig/SVGs Flat/bold/circle-dashed-bold.svg new file mode 100644 index 0000000..9bee6b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/circle-dashed-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/circle-half-bold.svg b/phosphor_orig/SVGs Flat/bold/circle-half-bold.svg new file mode 100644 index 0000000..a03d1a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/circle-half-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/circle-half-tilt-bold.svg b/phosphor_orig/SVGs Flat/bold/circle-half-tilt-bold.svg new file mode 100644 index 0000000..4d27e16 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/circle-half-tilt-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/circle-notch-bold.svg b/phosphor_orig/SVGs Flat/bold/circle-notch-bold.svg new file mode 100644 index 0000000..e388cb1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/circle-notch-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/circles-four-bold.svg b/phosphor_orig/SVGs Flat/bold/circles-four-bold.svg new file mode 100644 index 0000000..76be881 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/circles-four-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/circles-three-bold.svg b/phosphor_orig/SVGs Flat/bold/circles-three-bold.svg new file mode 100644 index 0000000..9bc1bd0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/circles-three-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/circles-three-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/circles-three-plus-bold.svg new file mode 100644 index 0000000..6ec6077 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/circles-three-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/circuitry-bold.svg b/phosphor_orig/SVGs Flat/bold/circuitry-bold.svg new file mode 100644 index 0000000..48c4973 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/circuitry-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/city-bold.svg b/phosphor_orig/SVGs Flat/bold/city-bold.svg new file mode 100644 index 0000000..76d9a8e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/city-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/clipboard-bold.svg b/phosphor_orig/SVGs Flat/bold/clipboard-bold.svg new file mode 100644 index 0000000..878651e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/clipboard-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/clipboard-text-bold.svg b/phosphor_orig/SVGs Flat/bold/clipboard-text-bold.svg new file mode 100644 index 0000000..3fb7ba6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/clipboard-text-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/clock-afternoon-bold.svg b/phosphor_orig/SVGs Flat/bold/clock-afternoon-bold.svg new file mode 100644 index 0000000..a054d43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/clock-afternoon-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/clock-bold.svg b/phosphor_orig/SVGs Flat/bold/clock-bold.svg new file mode 100644 index 0000000..b11c256 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/clock-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/clock-clockwise-bold.svg b/phosphor_orig/SVGs Flat/bold/clock-clockwise-bold.svg new file mode 100644 index 0000000..275bd0f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/clock-clockwise-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/clock-countdown-bold.svg b/phosphor_orig/SVGs Flat/bold/clock-countdown-bold.svg new file mode 100644 index 0000000..07add7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/clock-countdown-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/clock-counter-clockwise-bold.svg b/phosphor_orig/SVGs Flat/bold/clock-counter-clockwise-bold.svg new file mode 100644 index 0000000..4caa70e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/clock-counter-clockwise-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/clock-user-bold.svg b/phosphor_orig/SVGs Flat/bold/clock-user-bold.svg new file mode 100644 index 0000000..f90742d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/clock-user-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/closed-captioning-bold.svg b/phosphor_orig/SVGs Flat/bold/closed-captioning-bold.svg new file mode 100644 index 0000000..c95af89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/closed-captioning-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cloud-arrow-down-bold.svg b/phosphor_orig/SVGs Flat/bold/cloud-arrow-down-bold.svg new file mode 100644 index 0000000..c4bdbd4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cloud-arrow-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cloud-arrow-up-bold.svg b/phosphor_orig/SVGs Flat/bold/cloud-arrow-up-bold.svg new file mode 100644 index 0000000..53ad332 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cloud-arrow-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cloud-bold.svg b/phosphor_orig/SVGs Flat/bold/cloud-bold.svg new file mode 100644 index 0000000..172dbea --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cloud-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cloud-check-bold.svg b/phosphor_orig/SVGs Flat/bold/cloud-check-bold.svg new file mode 100644 index 0000000..48a57ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cloud-check-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cloud-fog-bold.svg b/phosphor_orig/SVGs Flat/bold/cloud-fog-bold.svg new file mode 100644 index 0000000..406ed59 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cloud-fog-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cloud-lightning-bold.svg b/phosphor_orig/SVGs Flat/bold/cloud-lightning-bold.svg new file mode 100644 index 0000000..80393b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cloud-lightning-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cloud-moon-bold.svg b/phosphor_orig/SVGs Flat/bold/cloud-moon-bold.svg new file mode 100644 index 0000000..7160fd3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cloud-moon-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cloud-rain-bold.svg b/phosphor_orig/SVGs Flat/bold/cloud-rain-bold.svg new file mode 100644 index 0000000..b53f56a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cloud-rain-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cloud-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/cloud-slash-bold.svg new file mode 100644 index 0000000..da076cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cloud-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cloud-snow-bold.svg b/phosphor_orig/SVGs Flat/bold/cloud-snow-bold.svg new file mode 100644 index 0000000..e6d045e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cloud-snow-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cloud-sun-bold.svg b/phosphor_orig/SVGs Flat/bold/cloud-sun-bold.svg new file mode 100644 index 0000000..ccb33fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cloud-sun-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cloud-warning-bold.svg b/phosphor_orig/SVGs Flat/bold/cloud-warning-bold.svg new file mode 100644 index 0000000..5ec702d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cloud-warning-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cloud-x-bold.svg b/phosphor_orig/SVGs Flat/bold/cloud-x-bold.svg new file mode 100644 index 0000000..cf4d244 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cloud-x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/clover-bold.svg b/phosphor_orig/SVGs Flat/bold/clover-bold.svg new file mode 100644 index 0000000..eed1940 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/clover-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/club-bold.svg b/phosphor_orig/SVGs Flat/bold/club-bold.svg new file mode 100644 index 0000000..be8d7f0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/club-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/coat-hanger-bold.svg b/phosphor_orig/SVGs Flat/bold/coat-hanger-bold.svg new file mode 100644 index 0000000..b74cc01 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/coat-hanger-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/coda-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/coda-logo-bold.svg new file mode 100644 index 0000000..96066d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/coda-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/code-block-bold.svg b/phosphor_orig/SVGs Flat/bold/code-block-bold.svg new file mode 100644 index 0000000..a1c1e9a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/code-block-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/code-bold.svg b/phosphor_orig/SVGs Flat/bold/code-bold.svg new file mode 100644 index 0000000..d46620e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/code-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/code-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/code-simple-bold.svg new file mode 100644 index 0000000..1524483 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/code-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/codepen-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/codepen-logo-bold.svg new file mode 100644 index 0000000..5e567f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/codepen-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/codesandbox-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/codesandbox-logo-bold.svg new file mode 100644 index 0000000..057f7c6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/codesandbox-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/coffee-bean-bold.svg b/phosphor_orig/SVGs Flat/bold/coffee-bean-bold.svg new file mode 100644 index 0000000..662325d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/coffee-bean-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/coffee-bold.svg b/phosphor_orig/SVGs Flat/bold/coffee-bold.svg new file mode 100644 index 0000000..98c31b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/coffee-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/coin-bold.svg b/phosphor_orig/SVGs Flat/bold/coin-bold.svg new file mode 100644 index 0000000..9bedb46 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/coin-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/coin-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/coin-vertical-bold.svg new file mode 100644 index 0000000..4e5cf4c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/coin-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/coins-bold.svg b/phosphor_orig/SVGs Flat/bold/coins-bold.svg new file mode 100644 index 0000000..85fe574 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/coins-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/columns-bold.svg b/phosphor_orig/SVGs Flat/bold/columns-bold.svg new file mode 100644 index 0000000..a61baf9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/columns-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/columns-plus-left-bold.svg b/phosphor_orig/SVGs Flat/bold/columns-plus-left-bold.svg new file mode 100644 index 0000000..32af489 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/columns-plus-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/columns-plus-right-bold.svg b/phosphor_orig/SVGs Flat/bold/columns-plus-right-bold.svg new file mode 100644 index 0000000..e4729e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/columns-plus-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/command-bold.svg b/phosphor_orig/SVGs Flat/bold/command-bold.svg new file mode 100644 index 0000000..35873c2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/command-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/compass-bold.svg b/phosphor_orig/SVGs Flat/bold/compass-bold.svg new file mode 100644 index 0000000..0241d23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/compass-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/compass-rose-bold.svg b/phosphor_orig/SVGs Flat/bold/compass-rose-bold.svg new file mode 100644 index 0000000..8f517d0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/compass-rose-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/compass-tool-bold.svg b/phosphor_orig/SVGs Flat/bold/compass-tool-bold.svg new file mode 100644 index 0000000..59ccdd2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/compass-tool-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/computer-tower-bold.svg b/phosphor_orig/SVGs Flat/bold/computer-tower-bold.svg new file mode 100644 index 0000000..0a9b321 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/computer-tower-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/confetti-bold.svg b/phosphor_orig/SVGs Flat/bold/confetti-bold.svg new file mode 100644 index 0000000..74de129 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/confetti-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/contactless-payment-bold.svg b/phosphor_orig/SVGs Flat/bold/contactless-payment-bold.svg new file mode 100644 index 0000000..78565b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/contactless-payment-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/control-bold.svg b/phosphor_orig/SVGs Flat/bold/control-bold.svg new file mode 100644 index 0000000..7ca0b94 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/control-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cookie-bold.svg b/phosphor_orig/SVGs Flat/bold/cookie-bold.svg new file mode 100644 index 0000000..ece9bc0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cookie-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cooking-pot-bold.svg b/phosphor_orig/SVGs Flat/bold/cooking-pot-bold.svg new file mode 100644 index 0000000..6cbbb52 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cooking-pot-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/copy-bold.svg b/phosphor_orig/SVGs Flat/bold/copy-bold.svg new file mode 100644 index 0000000..c44be1d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/copy-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/copy-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/copy-simple-bold.svg new file mode 100644 index 0000000..44a6ec6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/copy-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/copyleft-bold.svg b/phosphor_orig/SVGs Flat/bold/copyleft-bold.svg new file mode 100644 index 0000000..150c019 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/copyleft-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/copyright-bold.svg b/phosphor_orig/SVGs Flat/bold/copyright-bold.svg new file mode 100644 index 0000000..2e50e07 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/copyright-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/corners-in-bold.svg b/phosphor_orig/SVGs Flat/bold/corners-in-bold.svg new file mode 100644 index 0000000..63354ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/corners-in-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/corners-out-bold.svg b/phosphor_orig/SVGs Flat/bold/corners-out-bold.svg new file mode 100644 index 0000000..44d2e62 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/corners-out-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/couch-bold.svg b/phosphor_orig/SVGs Flat/bold/couch-bold.svg new file mode 100644 index 0000000..8241499 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/couch-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/court-basketball-bold.svg b/phosphor_orig/SVGs Flat/bold/court-basketball-bold.svg new file mode 100644 index 0000000..b8dd9a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/court-basketball-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cow-bold.svg b/phosphor_orig/SVGs Flat/bold/cow-bold.svg new file mode 100644 index 0000000..ebbf748 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cow-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cowboy-hat-bold.svg b/phosphor_orig/SVGs Flat/bold/cowboy-hat-bold.svg new file mode 100644 index 0000000..e402d2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cowboy-hat-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cpu-bold.svg b/phosphor_orig/SVGs Flat/bold/cpu-bold.svg new file mode 100644 index 0000000..0fef050 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cpu-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/crane-bold.svg b/phosphor_orig/SVGs Flat/bold/crane-bold.svg new file mode 100644 index 0000000..d157a22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/crane-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/crane-tower-bold.svg b/phosphor_orig/SVGs Flat/bold/crane-tower-bold.svg new file mode 100644 index 0000000..e297122 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/crane-tower-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/credit-card-bold.svg b/phosphor_orig/SVGs Flat/bold/credit-card-bold.svg new file mode 100644 index 0000000..73de32d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/credit-card-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cricket-bold.svg b/phosphor_orig/SVGs Flat/bold/cricket-bold.svg new file mode 100644 index 0000000..787b11b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cricket-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/crop-bold.svg b/phosphor_orig/SVGs Flat/bold/crop-bold.svg new file mode 100644 index 0000000..e71a017 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/crop-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cross-bold.svg b/phosphor_orig/SVGs Flat/bold/cross-bold.svg new file mode 100644 index 0000000..1dec686 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cross-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/crosshair-bold.svg b/phosphor_orig/SVGs Flat/bold/crosshair-bold.svg new file mode 100644 index 0000000..37c7ee2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/crosshair-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/crosshair-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/crosshair-simple-bold.svg new file mode 100644 index 0000000..97d3796 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/crosshair-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/crown-bold.svg b/phosphor_orig/SVGs Flat/bold/crown-bold.svg new file mode 100644 index 0000000..54ea184 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/crown-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/crown-cross-bold.svg b/phosphor_orig/SVGs Flat/bold/crown-cross-bold.svg new file mode 100644 index 0000000..a0c92ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/crown-cross-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/crown-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/crown-simple-bold.svg new file mode 100644 index 0000000..0d40910 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/crown-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cube-bold.svg b/phosphor_orig/SVGs Flat/bold/cube-bold.svg new file mode 100644 index 0000000..d7c99a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cube-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cube-focus-bold.svg b/phosphor_orig/SVGs Flat/bold/cube-focus-bold.svg new file mode 100644 index 0000000..eb289b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cube-focus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cube-transparent-bold.svg b/phosphor_orig/SVGs Flat/bold/cube-transparent-bold.svg new file mode 100644 index 0000000..97f7d45 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cube-transparent-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/currency-btc-bold.svg b/phosphor_orig/SVGs Flat/bold/currency-btc-bold.svg new file mode 100644 index 0000000..6af0730 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/currency-btc-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/currency-circle-dollar-bold.svg b/phosphor_orig/SVGs Flat/bold/currency-circle-dollar-bold.svg new file mode 100644 index 0000000..5e65954 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/currency-circle-dollar-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/currency-cny-bold.svg b/phosphor_orig/SVGs Flat/bold/currency-cny-bold.svg new file mode 100644 index 0000000..9d213e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/currency-cny-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/currency-dollar-bold.svg b/phosphor_orig/SVGs Flat/bold/currency-dollar-bold.svg new file mode 100644 index 0000000..af953eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/currency-dollar-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/currency-dollar-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/currency-dollar-simple-bold.svg new file mode 100644 index 0000000..25ce984 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/currency-dollar-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/currency-eth-bold.svg b/phosphor_orig/SVGs Flat/bold/currency-eth-bold.svg new file mode 100644 index 0000000..61bab7b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/currency-eth-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/currency-eur-bold.svg b/phosphor_orig/SVGs Flat/bold/currency-eur-bold.svg new file mode 100644 index 0000000..b4205a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/currency-eur-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/currency-gbp-bold.svg b/phosphor_orig/SVGs Flat/bold/currency-gbp-bold.svg new file mode 100644 index 0000000..6c16fda --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/currency-gbp-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/currency-inr-bold.svg b/phosphor_orig/SVGs Flat/bold/currency-inr-bold.svg new file mode 100644 index 0000000..543f38e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/currency-inr-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/currency-jpy-bold.svg b/phosphor_orig/SVGs Flat/bold/currency-jpy-bold.svg new file mode 100644 index 0000000..c0aaaed --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/currency-jpy-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/currency-krw-bold.svg b/phosphor_orig/SVGs Flat/bold/currency-krw-bold.svg new file mode 100644 index 0000000..2a203ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/currency-krw-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/currency-kzt-bold.svg b/phosphor_orig/SVGs Flat/bold/currency-kzt-bold.svg new file mode 100644 index 0000000..69545b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/currency-kzt-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/currency-ngn-bold.svg b/phosphor_orig/SVGs Flat/bold/currency-ngn-bold.svg new file mode 100644 index 0000000..22cb92d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/currency-ngn-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/currency-rub-bold.svg b/phosphor_orig/SVGs Flat/bold/currency-rub-bold.svg new file mode 100644 index 0000000..8d6cc37 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/currency-rub-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cursor-bold.svg b/phosphor_orig/SVGs Flat/bold/cursor-bold.svg new file mode 100644 index 0000000..cd17314 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cursor-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cursor-click-bold.svg b/phosphor_orig/SVGs Flat/bold/cursor-click-bold.svg new file mode 100644 index 0000000..106bf04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cursor-click-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cursor-text-bold.svg b/phosphor_orig/SVGs Flat/bold/cursor-text-bold.svg new file mode 100644 index 0000000..954e15b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cursor-text-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/cylinder-bold.svg b/phosphor_orig/SVGs Flat/bold/cylinder-bold.svg new file mode 100644 index 0000000..0e1f106 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/cylinder-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/database-bold.svg b/phosphor_orig/SVGs Flat/bold/database-bold.svg new file mode 100644 index 0000000..c0ce1cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/database-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/desk-bold.svg b/phosphor_orig/SVGs Flat/bold/desk-bold.svg new file mode 100644 index 0000000..0c9f8eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/desk-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/desktop-bold.svg b/phosphor_orig/SVGs Flat/bold/desktop-bold.svg new file mode 100644 index 0000000..459c714 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/desktop-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/desktop-tower-bold.svg b/phosphor_orig/SVGs Flat/bold/desktop-tower-bold.svg new file mode 100644 index 0000000..30456bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/desktop-tower-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/detective-bold.svg b/phosphor_orig/SVGs Flat/bold/detective-bold.svg new file mode 100644 index 0000000..e8126fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/detective-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dev-to-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/dev-to-logo-bold.svg new file mode 100644 index 0000000..69107e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dev-to-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/device-mobile-bold.svg b/phosphor_orig/SVGs Flat/bold/device-mobile-bold.svg new file mode 100644 index 0000000..7deea82 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/device-mobile-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/device-mobile-camera-bold.svg b/phosphor_orig/SVGs Flat/bold/device-mobile-camera-bold.svg new file mode 100644 index 0000000..d10345e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/device-mobile-camera-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/device-mobile-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/device-mobile-slash-bold.svg new file mode 100644 index 0000000..0b9c99c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/device-mobile-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/device-mobile-speaker-bold.svg b/phosphor_orig/SVGs Flat/bold/device-mobile-speaker-bold.svg new file mode 100644 index 0000000..b2525a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/device-mobile-speaker-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/device-rotate-bold.svg b/phosphor_orig/SVGs Flat/bold/device-rotate-bold.svg new file mode 100644 index 0000000..b8c249c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/device-rotate-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/device-tablet-bold.svg b/phosphor_orig/SVGs Flat/bold/device-tablet-bold.svg new file mode 100644 index 0000000..ef11889 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/device-tablet-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/device-tablet-camera-bold.svg b/phosphor_orig/SVGs Flat/bold/device-tablet-camera-bold.svg new file mode 100644 index 0000000..d1f0a9f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/device-tablet-camera-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/device-tablet-speaker-bold.svg b/phosphor_orig/SVGs Flat/bold/device-tablet-speaker-bold.svg new file mode 100644 index 0000000..aa2d109 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/device-tablet-speaker-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/devices-bold.svg b/phosphor_orig/SVGs Flat/bold/devices-bold.svg new file mode 100644 index 0000000..dc84d95 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/devices-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/diamond-bold.svg b/phosphor_orig/SVGs Flat/bold/diamond-bold.svg new file mode 100644 index 0000000..f271b5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/diamond-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/diamonds-four-bold.svg b/phosphor_orig/SVGs Flat/bold/diamonds-four-bold.svg new file mode 100644 index 0000000..552e301 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/diamonds-four-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dice-five-bold.svg b/phosphor_orig/SVGs Flat/bold/dice-five-bold.svg new file mode 100644 index 0000000..16154c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dice-five-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dice-four-bold.svg b/phosphor_orig/SVGs Flat/bold/dice-four-bold.svg new file mode 100644 index 0000000..73e05bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dice-four-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dice-one-bold.svg b/phosphor_orig/SVGs Flat/bold/dice-one-bold.svg new file mode 100644 index 0000000..807aa3d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dice-one-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dice-six-bold.svg b/phosphor_orig/SVGs Flat/bold/dice-six-bold.svg new file mode 100644 index 0000000..53345ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dice-six-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dice-three-bold.svg b/phosphor_orig/SVGs Flat/bold/dice-three-bold.svg new file mode 100644 index 0000000..69249f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dice-three-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dice-two-bold.svg b/phosphor_orig/SVGs Flat/bold/dice-two-bold.svg new file mode 100644 index 0000000..a5f0c93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dice-two-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/disc-bold.svg b/phosphor_orig/SVGs Flat/bold/disc-bold.svg new file mode 100644 index 0000000..1217cb9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/disc-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/disco-ball-bold.svg b/phosphor_orig/SVGs Flat/bold/disco-ball-bold.svg new file mode 100644 index 0000000..21c9ce0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/disco-ball-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/discord-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/discord-logo-bold.svg new file mode 100644 index 0000000..a25539d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/discord-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/divide-bold.svg b/phosphor_orig/SVGs Flat/bold/divide-bold.svg new file mode 100644 index 0000000..7426e1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/divide-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dna-bold.svg b/phosphor_orig/SVGs Flat/bold/dna-bold.svg new file mode 100644 index 0000000..2cba38e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dna-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dog-bold.svg b/phosphor_orig/SVGs Flat/bold/dog-bold.svg new file mode 100644 index 0000000..4a0f372 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dog-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/door-bold.svg b/phosphor_orig/SVGs Flat/bold/door-bold.svg new file mode 100644 index 0000000..c88b856 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/door-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/door-open-bold.svg b/phosphor_orig/SVGs Flat/bold/door-open-bold.svg new file mode 100644 index 0000000..84b75fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/door-open-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dot-bold.svg b/phosphor_orig/SVGs Flat/bold/dot-bold.svg new file mode 100644 index 0000000..83ec22b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dot-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dot-outline-bold.svg b/phosphor_orig/SVGs Flat/bold/dot-outline-bold.svg new file mode 100644 index 0000000..442972c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dot-outline-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dots-nine-bold.svg b/phosphor_orig/SVGs Flat/bold/dots-nine-bold.svg new file mode 100644 index 0000000..ef49939 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dots-nine-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dots-six-bold.svg b/phosphor_orig/SVGs Flat/bold/dots-six-bold.svg new file mode 100644 index 0000000..2147e8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dots-six-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dots-six-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/dots-six-vertical-bold.svg new file mode 100644 index 0000000..9cbaf46 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dots-six-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dots-three-bold.svg b/phosphor_orig/SVGs Flat/bold/dots-three-bold.svg new file mode 100644 index 0000000..637c58d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dots-three-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dots-three-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/dots-three-circle-bold.svg new file mode 100644 index 0000000..4297b30 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dots-three-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dots-three-circle-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/dots-three-circle-vertical-bold.svg new file mode 100644 index 0000000..f21b9e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dots-three-circle-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dots-three-outline-bold.svg b/phosphor_orig/SVGs Flat/bold/dots-three-outline-bold.svg new file mode 100644 index 0000000..1886601 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dots-three-outline-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dots-three-outline-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/dots-three-outline-vertical-bold.svg new file mode 100644 index 0000000..ced7f73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dots-three-outline-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dots-three-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/dots-three-vertical-bold.svg new file mode 100644 index 0000000..e4f034a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dots-three-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/download-bold.svg b/phosphor_orig/SVGs Flat/bold/download-bold.svg new file mode 100644 index 0000000..7438a49 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/download-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/download-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/download-simple-bold.svg new file mode 100644 index 0000000..b467d46 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/download-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dress-bold.svg b/phosphor_orig/SVGs Flat/bold/dress-bold.svg new file mode 100644 index 0000000..5b9528b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dress-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dresser-bold.svg b/phosphor_orig/SVGs Flat/bold/dresser-bold.svg new file mode 100644 index 0000000..374c37c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dresser-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dribbble-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/dribbble-logo-bold.svg new file mode 100644 index 0000000..85f5f8d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dribbble-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/drone-bold.svg b/phosphor_orig/SVGs Flat/bold/drone-bold.svg new file mode 100644 index 0000000..50938e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/drone-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/drop-bold.svg b/phosphor_orig/SVGs Flat/bold/drop-bold.svg new file mode 100644 index 0000000..a7d2c64 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/drop-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/drop-half-bold.svg b/phosphor_orig/SVGs Flat/bold/drop-half-bold.svg new file mode 100644 index 0000000..674f068 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/drop-half-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/drop-half-bottom-bold.svg b/phosphor_orig/SVGs Flat/bold/drop-half-bottom-bold.svg new file mode 100644 index 0000000..79d1ef9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/drop-half-bottom-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/drop-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/drop-simple-bold.svg new file mode 100644 index 0000000..acdf7c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/drop-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/drop-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/drop-slash-bold.svg new file mode 100644 index 0000000..0a6c724 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/drop-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/dropbox-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/dropbox-logo-bold.svg new file mode 100644 index 0000000..a765e9f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/dropbox-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/ear-bold.svg b/phosphor_orig/SVGs Flat/bold/ear-bold.svg new file mode 100644 index 0000000..5308855 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/ear-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/ear-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/ear-slash-bold.svg new file mode 100644 index 0000000..57c6592 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/ear-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/egg-bold.svg b/phosphor_orig/SVGs Flat/bold/egg-bold.svg new file mode 100644 index 0000000..bc276cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/egg-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/egg-crack-bold.svg b/phosphor_orig/SVGs Flat/bold/egg-crack-bold.svg new file mode 100644 index 0000000..7e0d5e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/egg-crack-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/eject-bold.svg b/phosphor_orig/SVGs Flat/bold/eject-bold.svg new file mode 100644 index 0000000..d50ffbd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/eject-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/eject-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/eject-simple-bold.svg new file mode 100644 index 0000000..042c816 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/eject-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/elevator-bold.svg b/phosphor_orig/SVGs Flat/bold/elevator-bold.svg new file mode 100644 index 0000000..ec03564 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/elevator-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/empty-bold.svg b/phosphor_orig/SVGs Flat/bold/empty-bold.svg new file mode 100644 index 0000000..770bf37 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/empty-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/engine-bold.svg b/phosphor_orig/SVGs Flat/bold/engine-bold.svg new file mode 100644 index 0000000..aad2def --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/engine-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/envelope-bold.svg b/phosphor_orig/SVGs Flat/bold/envelope-bold.svg new file mode 100644 index 0000000..bd2480f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/envelope-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/envelope-open-bold.svg b/phosphor_orig/SVGs Flat/bold/envelope-open-bold.svg new file mode 100644 index 0000000..66c1075 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/envelope-open-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/envelope-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/envelope-simple-bold.svg new file mode 100644 index 0000000..db8f1d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/envelope-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/envelope-simple-open-bold.svg b/phosphor_orig/SVGs Flat/bold/envelope-simple-open-bold.svg new file mode 100644 index 0000000..0c36852 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/envelope-simple-open-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/equalizer-bold.svg b/phosphor_orig/SVGs Flat/bold/equalizer-bold.svg new file mode 100644 index 0000000..be4cbf9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/equalizer-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/equals-bold.svg b/phosphor_orig/SVGs Flat/bold/equals-bold.svg new file mode 100644 index 0000000..5d5c149 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/equals-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/eraser-bold.svg b/phosphor_orig/SVGs Flat/bold/eraser-bold.svg new file mode 100644 index 0000000..e14a530 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/eraser-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/escalator-down-bold.svg b/phosphor_orig/SVGs Flat/bold/escalator-down-bold.svg new file mode 100644 index 0000000..a8a72bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/escalator-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/escalator-up-bold.svg b/phosphor_orig/SVGs Flat/bold/escalator-up-bold.svg new file mode 100644 index 0000000..986176e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/escalator-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/exam-bold.svg b/phosphor_orig/SVGs Flat/bold/exam-bold.svg new file mode 100644 index 0000000..594a984 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/exam-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/exclamation-mark-bold.svg b/phosphor_orig/SVGs Flat/bold/exclamation-mark-bold.svg new file mode 100644 index 0000000..d716d1c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/exclamation-mark-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/exclude-bold.svg b/phosphor_orig/SVGs Flat/bold/exclude-bold.svg new file mode 100644 index 0000000..bd4924d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/exclude-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/exclude-square-bold.svg b/phosphor_orig/SVGs Flat/bold/exclude-square-bold.svg new file mode 100644 index 0000000..bc1462c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/exclude-square-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/export-bold.svg b/phosphor_orig/SVGs Flat/bold/export-bold.svg new file mode 100644 index 0000000..b9b555e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/export-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/eye-bold.svg b/phosphor_orig/SVGs Flat/bold/eye-bold.svg new file mode 100644 index 0000000..2dd87a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/eye-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/eye-closed-bold.svg b/phosphor_orig/SVGs Flat/bold/eye-closed-bold.svg new file mode 100644 index 0000000..964fd17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/eye-closed-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/eye-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/eye-slash-bold.svg new file mode 100644 index 0000000..1801c7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/eye-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/eyedropper-bold.svg b/phosphor_orig/SVGs Flat/bold/eyedropper-bold.svg new file mode 100644 index 0000000..d922092 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/eyedropper-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/eyedropper-sample-bold.svg b/phosphor_orig/SVGs Flat/bold/eyedropper-sample-bold.svg new file mode 100644 index 0000000..19de721 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/eyedropper-sample-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/eyeglasses-bold.svg b/phosphor_orig/SVGs Flat/bold/eyeglasses-bold.svg new file mode 100644 index 0000000..8ffb05a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/eyeglasses-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/eyes-bold.svg b/phosphor_orig/SVGs Flat/bold/eyes-bold.svg new file mode 100644 index 0000000..b9a5b55 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/eyes-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/face-mask-bold.svg b/phosphor_orig/SVGs Flat/bold/face-mask-bold.svg new file mode 100644 index 0000000..2748d62 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/face-mask-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/facebook-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/facebook-logo-bold.svg new file mode 100644 index 0000000..7d0305f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/facebook-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/factory-bold.svg b/phosphor_orig/SVGs Flat/bold/factory-bold.svg new file mode 100644 index 0000000..e3fbb38 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/factory-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/faders-bold.svg b/phosphor_orig/SVGs Flat/bold/faders-bold.svg new file mode 100644 index 0000000..1b7a795 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/faders-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/faders-horizontal-bold.svg b/phosphor_orig/SVGs Flat/bold/faders-horizontal-bold.svg new file mode 100644 index 0000000..e26c6bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/faders-horizontal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/fallout-shelter-bold.svg b/phosphor_orig/SVGs Flat/bold/fallout-shelter-bold.svg new file mode 100644 index 0000000..ccc0350 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/fallout-shelter-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/fan-bold.svg b/phosphor_orig/SVGs Flat/bold/fan-bold.svg new file mode 100644 index 0000000..8b0c0b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/fan-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/farm-bold.svg b/phosphor_orig/SVGs Flat/bold/farm-bold.svg new file mode 100644 index 0000000..141bd17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/farm-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/fast-forward-bold.svg b/phosphor_orig/SVGs Flat/bold/fast-forward-bold.svg new file mode 100644 index 0000000..8c7f03d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/fast-forward-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/fast-forward-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/fast-forward-circle-bold.svg new file mode 100644 index 0000000..08f47b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/fast-forward-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/feather-bold.svg b/phosphor_orig/SVGs Flat/bold/feather-bold.svg new file mode 100644 index 0000000..3343a2a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/feather-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/fediverse-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/fediverse-logo-bold.svg new file mode 100644 index 0000000..f95deae --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/fediverse-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/figma-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/figma-logo-bold.svg new file mode 100644 index 0000000..362cb8e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/figma-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-archive-bold.svg b/phosphor_orig/SVGs Flat/bold/file-archive-bold.svg new file mode 100644 index 0000000..db1be02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-archive-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-arrow-down-bold.svg b/phosphor_orig/SVGs Flat/bold/file-arrow-down-bold.svg new file mode 100644 index 0000000..f0d0e31 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-arrow-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-arrow-up-bold.svg b/phosphor_orig/SVGs Flat/bold/file-arrow-up-bold.svg new file mode 100644 index 0000000..ba7e47a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-arrow-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-audio-bold.svg b/phosphor_orig/SVGs Flat/bold/file-audio-bold.svg new file mode 100644 index 0000000..fc78081 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-audio-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-bold.svg b/phosphor_orig/SVGs Flat/bold/file-bold.svg new file mode 100644 index 0000000..efdb964 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-c-bold.svg b/phosphor_orig/SVGs Flat/bold/file-c-bold.svg new file mode 100644 index 0000000..69155aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-c-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-c-sharp-bold.svg b/phosphor_orig/SVGs Flat/bold/file-c-sharp-bold.svg new file mode 100644 index 0000000..f5ba37b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-c-sharp-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-cloud-bold.svg b/phosphor_orig/SVGs Flat/bold/file-cloud-bold.svg new file mode 100644 index 0000000..4d8edc8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-cloud-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-code-bold.svg b/phosphor_orig/SVGs Flat/bold/file-code-bold.svg new file mode 100644 index 0000000..d7f7f7e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-code-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-cpp-bold.svg b/phosphor_orig/SVGs Flat/bold/file-cpp-bold.svg new file mode 100644 index 0000000..cca3cce --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-cpp-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-css-bold.svg b/phosphor_orig/SVGs Flat/bold/file-css-bold.svg new file mode 100644 index 0000000..bf5021f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-css-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-csv-bold.svg b/phosphor_orig/SVGs Flat/bold/file-csv-bold.svg new file mode 100644 index 0000000..1e6da65 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-csv-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-dashed-bold.svg b/phosphor_orig/SVGs Flat/bold/file-dashed-bold.svg new file mode 100644 index 0000000..2912e63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-dashed-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-doc-bold.svg b/phosphor_orig/SVGs Flat/bold/file-doc-bold.svg new file mode 100644 index 0000000..a0570a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-doc-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-html-bold.svg b/phosphor_orig/SVGs Flat/bold/file-html-bold.svg new file mode 100644 index 0000000..5bbca89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-html-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-image-bold.svg b/phosphor_orig/SVGs Flat/bold/file-image-bold.svg new file mode 100644 index 0000000..2719d12 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-image-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-ini-bold.svg b/phosphor_orig/SVGs Flat/bold/file-ini-bold.svg new file mode 100644 index 0000000..17ea75c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-ini-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-jpg-bold.svg b/phosphor_orig/SVGs Flat/bold/file-jpg-bold.svg new file mode 100644 index 0000000..f945ccc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-jpg-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-js-bold.svg b/phosphor_orig/SVGs Flat/bold/file-js-bold.svg new file mode 100644 index 0000000..bed7a40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-js-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-jsx-bold.svg b/phosphor_orig/SVGs Flat/bold/file-jsx-bold.svg new file mode 100644 index 0000000..d930f65 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-jsx-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-lock-bold.svg b/phosphor_orig/SVGs Flat/bold/file-lock-bold.svg new file mode 100644 index 0000000..d0904a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-lock-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-magnifying-glass-bold.svg b/phosphor_orig/SVGs Flat/bold/file-magnifying-glass-bold.svg new file mode 100644 index 0000000..2b1e32a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-magnifying-glass-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-md-bold.svg b/phosphor_orig/SVGs Flat/bold/file-md-bold.svg new file mode 100644 index 0000000..5619a9c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-md-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-minus-bold.svg b/phosphor_orig/SVGs Flat/bold/file-minus-bold.svg new file mode 100644 index 0000000..ee0d21b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-minus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-pdf-bold.svg b/phosphor_orig/SVGs Flat/bold/file-pdf-bold.svg new file mode 100644 index 0000000..b7b3f5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-pdf-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/file-plus-bold.svg new file mode 100644 index 0000000..549a0a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-png-bold.svg b/phosphor_orig/SVGs Flat/bold/file-png-bold.svg new file mode 100644 index 0000000..5dbbed4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-png-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-ppt-bold.svg b/phosphor_orig/SVGs Flat/bold/file-ppt-bold.svg new file mode 100644 index 0000000..1a48f5a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-ppt-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-py-bold.svg b/phosphor_orig/SVGs Flat/bold/file-py-bold.svg new file mode 100644 index 0000000..5a2c753 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-py-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-rs-bold.svg b/phosphor_orig/SVGs Flat/bold/file-rs-bold.svg new file mode 100644 index 0000000..988c7b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-rs-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-sql-bold.svg b/phosphor_orig/SVGs Flat/bold/file-sql-bold.svg new file mode 100644 index 0000000..c9ffb51 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-sql-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-svg-bold.svg b/phosphor_orig/SVGs Flat/bold/file-svg-bold.svg new file mode 100644 index 0000000..96f3324 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-svg-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-text-bold.svg b/phosphor_orig/SVGs Flat/bold/file-text-bold.svg new file mode 100644 index 0000000..97ec541 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-text-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-ts-bold.svg b/phosphor_orig/SVGs Flat/bold/file-ts-bold.svg new file mode 100644 index 0000000..7a753ce --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-ts-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-tsx-bold.svg b/phosphor_orig/SVGs Flat/bold/file-tsx-bold.svg new file mode 100644 index 0000000..b8ded78 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-tsx-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-txt-bold.svg b/phosphor_orig/SVGs Flat/bold/file-txt-bold.svg new file mode 100644 index 0000000..a79feb7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-txt-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-video-bold.svg b/phosphor_orig/SVGs Flat/bold/file-video-bold.svg new file mode 100644 index 0000000..b5b2e32 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-video-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-vue-bold.svg b/phosphor_orig/SVGs Flat/bold/file-vue-bold.svg new file mode 100644 index 0000000..02e2f7a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-vue-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-x-bold.svg b/phosphor_orig/SVGs Flat/bold/file-x-bold.svg new file mode 100644 index 0000000..cee6f22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-xls-bold.svg b/phosphor_orig/SVGs Flat/bold/file-xls-bold.svg new file mode 100644 index 0000000..5c4806f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-xls-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/file-zip-bold.svg b/phosphor_orig/SVGs Flat/bold/file-zip-bold.svg new file mode 100644 index 0000000..2197df7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/file-zip-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/files-bold.svg b/phosphor_orig/SVGs Flat/bold/files-bold.svg new file mode 100644 index 0000000..b46f711 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/files-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/film-reel-bold.svg b/phosphor_orig/SVGs Flat/bold/film-reel-bold.svg new file mode 100644 index 0000000..3b7bfce --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/film-reel-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/film-script-bold.svg b/phosphor_orig/SVGs Flat/bold/film-script-bold.svg new file mode 100644 index 0000000..dce5324 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/film-script-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/film-slate-bold.svg b/phosphor_orig/SVGs Flat/bold/film-slate-bold.svg new file mode 100644 index 0000000..af33a74 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/film-slate-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/film-strip-bold.svg b/phosphor_orig/SVGs Flat/bold/film-strip-bold.svg new file mode 100644 index 0000000..fb48f6b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/film-strip-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/fingerprint-bold.svg b/phosphor_orig/SVGs Flat/bold/fingerprint-bold.svg new file mode 100644 index 0000000..8c52b90 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/fingerprint-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/fingerprint-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/fingerprint-simple-bold.svg new file mode 100644 index 0000000..68795bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/fingerprint-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/finn-the-human-bold.svg b/phosphor_orig/SVGs Flat/bold/finn-the-human-bold.svg new file mode 100644 index 0000000..c2713e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/finn-the-human-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/fire-bold.svg b/phosphor_orig/SVGs Flat/bold/fire-bold.svg new file mode 100644 index 0000000..f5f4eea --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/fire-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/fire-extinguisher-bold.svg b/phosphor_orig/SVGs Flat/bold/fire-extinguisher-bold.svg new file mode 100644 index 0000000..22c2057 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/fire-extinguisher-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/fire-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/fire-simple-bold.svg new file mode 100644 index 0000000..e682553 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/fire-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/fire-truck-bold.svg b/phosphor_orig/SVGs Flat/bold/fire-truck-bold.svg new file mode 100644 index 0000000..f3dc41b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/fire-truck-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/first-aid-bold.svg b/phosphor_orig/SVGs Flat/bold/first-aid-bold.svg new file mode 100644 index 0000000..8601d9d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/first-aid-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/first-aid-kit-bold.svg b/phosphor_orig/SVGs Flat/bold/first-aid-kit-bold.svg new file mode 100644 index 0000000..324e344 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/first-aid-kit-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/fish-bold.svg b/phosphor_orig/SVGs Flat/bold/fish-bold.svg new file mode 100644 index 0000000..f6b2db9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/fish-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/fish-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/fish-simple-bold.svg new file mode 100644 index 0000000..03bc632 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/fish-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/flag-banner-bold.svg b/phosphor_orig/SVGs Flat/bold/flag-banner-bold.svg new file mode 100644 index 0000000..ff3040f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/flag-banner-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/flag-banner-fold-bold.svg b/phosphor_orig/SVGs Flat/bold/flag-banner-fold-bold.svg new file mode 100644 index 0000000..75b914b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/flag-banner-fold-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/flag-bold.svg b/phosphor_orig/SVGs Flat/bold/flag-bold.svg new file mode 100644 index 0000000..0267e72 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/flag-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/flag-checkered-bold.svg b/phosphor_orig/SVGs Flat/bold/flag-checkered-bold.svg new file mode 100644 index 0000000..4c249cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/flag-checkered-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/flag-pennant-bold.svg b/phosphor_orig/SVGs Flat/bold/flag-pennant-bold.svg new file mode 100644 index 0000000..bd0e976 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/flag-pennant-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/flame-bold.svg b/phosphor_orig/SVGs Flat/bold/flame-bold.svg new file mode 100644 index 0000000..8fd8b1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/flame-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/flashlight-bold.svg b/phosphor_orig/SVGs Flat/bold/flashlight-bold.svg new file mode 100644 index 0000000..75c7200 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/flashlight-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/flask-bold.svg b/phosphor_orig/SVGs Flat/bold/flask-bold.svg new file mode 100644 index 0000000..8ce18fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/flask-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/flip-horizontal-bold.svg b/phosphor_orig/SVGs Flat/bold/flip-horizontal-bold.svg new file mode 100644 index 0000000..b1efa4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/flip-horizontal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/flip-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/flip-vertical-bold.svg new file mode 100644 index 0000000..2dddf26 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/flip-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/floppy-disk-back-bold.svg b/phosphor_orig/SVGs Flat/bold/floppy-disk-back-bold.svg new file mode 100644 index 0000000..7633e7b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/floppy-disk-back-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/floppy-disk-bold.svg b/phosphor_orig/SVGs Flat/bold/floppy-disk-bold.svg new file mode 100644 index 0000000..740fc06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/floppy-disk-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/flow-arrow-bold.svg b/phosphor_orig/SVGs Flat/bold/flow-arrow-bold.svg new file mode 100644 index 0000000..1ce0eda --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/flow-arrow-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/flower-bold.svg b/phosphor_orig/SVGs Flat/bold/flower-bold.svg new file mode 100644 index 0000000..8a33f7a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/flower-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/flower-lotus-bold.svg b/phosphor_orig/SVGs Flat/bold/flower-lotus-bold.svg new file mode 100644 index 0000000..3ec22ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/flower-lotus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/flower-tulip-bold.svg b/phosphor_orig/SVGs Flat/bold/flower-tulip-bold.svg new file mode 100644 index 0000000..af46869 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/flower-tulip-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/flying-saucer-bold.svg b/phosphor_orig/SVGs Flat/bold/flying-saucer-bold.svg new file mode 100644 index 0000000..022beba --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/flying-saucer-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folder-bold.svg b/phosphor_orig/SVGs Flat/bold/folder-bold.svg new file mode 100644 index 0000000..9513255 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folder-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folder-dashed-bold.svg b/phosphor_orig/SVGs Flat/bold/folder-dashed-bold.svg new file mode 100644 index 0000000..0414628 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folder-dashed-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folder-lock-bold.svg b/phosphor_orig/SVGs Flat/bold/folder-lock-bold.svg new file mode 100644 index 0000000..7d2a7a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folder-lock-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folder-minus-bold.svg b/phosphor_orig/SVGs Flat/bold/folder-minus-bold.svg new file mode 100644 index 0000000..f62c543 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folder-minus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folder-open-bold.svg b/phosphor_orig/SVGs Flat/bold/folder-open-bold.svg new file mode 100644 index 0000000..980ac86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folder-open-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folder-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/folder-plus-bold.svg new file mode 100644 index 0000000..d9fb831 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folder-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folder-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/folder-simple-bold.svg new file mode 100644 index 0000000..d7010e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folder-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folder-simple-dashed-bold.svg b/phosphor_orig/SVGs Flat/bold/folder-simple-dashed-bold.svg new file mode 100644 index 0000000..2e5ebb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folder-simple-dashed-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folder-simple-lock-bold.svg b/phosphor_orig/SVGs Flat/bold/folder-simple-lock-bold.svg new file mode 100644 index 0000000..4327930 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folder-simple-lock-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folder-simple-minus-bold.svg b/phosphor_orig/SVGs Flat/bold/folder-simple-minus-bold.svg new file mode 100644 index 0000000..9e39679 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folder-simple-minus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folder-simple-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/folder-simple-plus-bold.svg new file mode 100644 index 0000000..7d6bd97 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folder-simple-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folder-simple-star-bold.svg b/phosphor_orig/SVGs Flat/bold/folder-simple-star-bold.svg new file mode 100644 index 0000000..26dab1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folder-simple-star-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folder-simple-user-bold.svg b/phosphor_orig/SVGs Flat/bold/folder-simple-user-bold.svg new file mode 100644 index 0000000..faf3b14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folder-simple-user-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folder-star-bold.svg b/phosphor_orig/SVGs Flat/bold/folder-star-bold.svg new file mode 100644 index 0000000..f10169d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folder-star-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folder-user-bold.svg b/phosphor_orig/SVGs Flat/bold/folder-user-bold.svg new file mode 100644 index 0000000..62ae151 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folder-user-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/folders-bold.svg b/phosphor_orig/SVGs Flat/bold/folders-bold.svg new file mode 100644 index 0000000..ab1cf99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/folders-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/football-bold.svg b/phosphor_orig/SVGs Flat/bold/football-bold.svg new file mode 100644 index 0000000..bd58cc6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/football-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/football-helmet-bold.svg b/phosphor_orig/SVGs Flat/bold/football-helmet-bold.svg new file mode 100644 index 0000000..e05b130 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/football-helmet-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/footprints-bold.svg b/phosphor_orig/SVGs Flat/bold/footprints-bold.svg new file mode 100644 index 0000000..a1b8889 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/footprints-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/fork-knife-bold.svg b/phosphor_orig/SVGs Flat/bold/fork-knife-bold.svg new file mode 100644 index 0000000..ba93f3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/fork-knife-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/four-k-bold.svg b/phosphor_orig/SVGs Flat/bold/four-k-bold.svg new file mode 100644 index 0000000..fb55693 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/four-k-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/frame-corners-bold.svg b/phosphor_orig/SVGs Flat/bold/frame-corners-bold.svg new file mode 100644 index 0000000..b55d7d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/frame-corners-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/framer-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/framer-logo-bold.svg new file mode 100644 index 0000000..3c2a7c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/framer-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/function-bold.svg b/phosphor_orig/SVGs Flat/bold/function-bold.svg new file mode 100644 index 0000000..e4d2822 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/function-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/funnel-bold.svg b/phosphor_orig/SVGs Flat/bold/funnel-bold.svg new file mode 100644 index 0000000..58ee6ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/funnel-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/funnel-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/funnel-simple-bold.svg new file mode 100644 index 0000000..ab8d58e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/funnel-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/funnel-simple-x-bold.svg b/phosphor_orig/SVGs Flat/bold/funnel-simple-x-bold.svg new file mode 100644 index 0000000..6e5d9bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/funnel-simple-x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/funnel-x-bold.svg b/phosphor_orig/SVGs Flat/bold/funnel-x-bold.svg new file mode 100644 index 0000000..13fd22b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/funnel-x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/game-controller-bold.svg b/phosphor_orig/SVGs Flat/bold/game-controller-bold.svg new file mode 100644 index 0000000..c1d5add --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/game-controller-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/garage-bold.svg b/phosphor_orig/SVGs Flat/bold/garage-bold.svg new file mode 100644 index 0000000..80ae845 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/garage-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gas-can-bold.svg b/phosphor_orig/SVGs Flat/bold/gas-can-bold.svg new file mode 100644 index 0000000..6925169 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gas-can-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gas-pump-bold.svg b/phosphor_orig/SVGs Flat/bold/gas-pump-bold.svg new file mode 100644 index 0000000..c6deffb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gas-pump-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gauge-bold.svg b/phosphor_orig/SVGs Flat/bold/gauge-bold.svg new file mode 100644 index 0000000..5b1cdb5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gauge-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gavel-bold.svg b/phosphor_orig/SVGs Flat/bold/gavel-bold.svg new file mode 100644 index 0000000..f50054f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gavel-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gear-bold.svg b/phosphor_orig/SVGs Flat/bold/gear-bold.svg new file mode 100644 index 0000000..d87c2f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gear-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gear-fine-bold.svg b/phosphor_orig/SVGs Flat/bold/gear-fine-bold.svg new file mode 100644 index 0000000..79cc0c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gear-fine-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gear-six-bold.svg b/phosphor_orig/SVGs Flat/bold/gear-six-bold.svg new file mode 100644 index 0000000..30895cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gear-six-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gender-female-bold.svg b/phosphor_orig/SVGs Flat/bold/gender-female-bold.svg new file mode 100644 index 0000000..35b28e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gender-female-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gender-intersex-bold.svg b/phosphor_orig/SVGs Flat/bold/gender-intersex-bold.svg new file mode 100644 index 0000000..5a9cb00 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gender-intersex-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gender-male-bold.svg b/phosphor_orig/SVGs Flat/bold/gender-male-bold.svg new file mode 100644 index 0000000..88b0a30 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gender-male-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gender-neuter-bold.svg b/phosphor_orig/SVGs Flat/bold/gender-neuter-bold.svg new file mode 100644 index 0000000..3d8bf8c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gender-neuter-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gender-nonbinary-bold.svg b/phosphor_orig/SVGs Flat/bold/gender-nonbinary-bold.svg new file mode 100644 index 0000000..b825b30 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gender-nonbinary-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gender-transgender-bold.svg b/phosphor_orig/SVGs Flat/bold/gender-transgender-bold.svg new file mode 100644 index 0000000..c3c70e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gender-transgender-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/ghost-bold.svg b/phosphor_orig/SVGs Flat/bold/ghost-bold.svg new file mode 100644 index 0000000..c4b98ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/ghost-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gif-bold.svg b/phosphor_orig/SVGs Flat/bold/gif-bold.svg new file mode 100644 index 0000000..0815953 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gif-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gift-bold.svg b/phosphor_orig/SVGs Flat/bold/gift-bold.svg new file mode 100644 index 0000000..b2a06ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gift-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/git-branch-bold.svg b/phosphor_orig/SVGs Flat/bold/git-branch-bold.svg new file mode 100644 index 0000000..af46d8d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/git-branch-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/git-commit-bold.svg b/phosphor_orig/SVGs Flat/bold/git-commit-bold.svg new file mode 100644 index 0000000..9bb9282 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/git-commit-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/git-diff-bold.svg b/phosphor_orig/SVGs Flat/bold/git-diff-bold.svg new file mode 100644 index 0000000..adf8242 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/git-diff-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/git-fork-bold.svg b/phosphor_orig/SVGs Flat/bold/git-fork-bold.svg new file mode 100644 index 0000000..1f248fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/git-fork-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/git-merge-bold.svg b/phosphor_orig/SVGs Flat/bold/git-merge-bold.svg new file mode 100644 index 0000000..65581d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/git-merge-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/git-pull-request-bold.svg b/phosphor_orig/SVGs Flat/bold/git-pull-request-bold.svg new file mode 100644 index 0000000..ea8cd85 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/git-pull-request-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/github-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/github-logo-bold.svg new file mode 100644 index 0000000..dad0bee --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/github-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gitlab-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/gitlab-logo-bold.svg new file mode 100644 index 0000000..4641e4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gitlab-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gitlab-logo-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/gitlab-logo-simple-bold.svg new file mode 100644 index 0000000..2fbc2f0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gitlab-logo-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/globe-bold.svg b/phosphor_orig/SVGs Flat/bold/globe-bold.svg new file mode 100644 index 0000000..49e66b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/globe-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/globe-hemisphere-east-bold.svg b/phosphor_orig/SVGs Flat/bold/globe-hemisphere-east-bold.svg new file mode 100644 index 0000000..a4044ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/globe-hemisphere-east-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/globe-hemisphere-west-bold.svg b/phosphor_orig/SVGs Flat/bold/globe-hemisphere-west-bold.svg new file mode 100644 index 0000000..b5784f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/globe-hemisphere-west-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/globe-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/globe-simple-bold.svg new file mode 100644 index 0000000..2ff9023 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/globe-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/globe-simple-x-bold.svg b/phosphor_orig/SVGs Flat/bold/globe-simple-x-bold.svg new file mode 100644 index 0000000..4cdd8ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/globe-simple-x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/globe-stand-bold.svg b/phosphor_orig/SVGs Flat/bold/globe-stand-bold.svg new file mode 100644 index 0000000..00efcfd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/globe-stand-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/globe-x-bold.svg b/phosphor_orig/SVGs Flat/bold/globe-x-bold.svg new file mode 100644 index 0000000..68c0797 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/globe-x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/goggles-bold.svg b/phosphor_orig/SVGs Flat/bold/goggles-bold.svg new file mode 100644 index 0000000..1dfa8e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/goggles-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/golf-bold.svg b/phosphor_orig/SVGs Flat/bold/golf-bold.svg new file mode 100644 index 0000000..04cb0e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/golf-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/goodreads-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/goodreads-logo-bold.svg new file mode 100644 index 0000000..fbd23ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/goodreads-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/google-cardboard-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/google-cardboard-logo-bold.svg new file mode 100644 index 0000000..369606b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/google-cardboard-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/google-chrome-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/google-chrome-logo-bold.svg new file mode 100644 index 0000000..f589ba1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/google-chrome-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/google-drive-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/google-drive-logo-bold.svg new file mode 100644 index 0000000..98925b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/google-drive-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/google-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/google-logo-bold.svg new file mode 100644 index 0000000..35dfdf6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/google-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/google-photos-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/google-photos-logo-bold.svg new file mode 100644 index 0000000..e846ed9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/google-photos-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/google-play-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/google-play-logo-bold.svg new file mode 100644 index 0000000..da5f5ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/google-play-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/google-podcasts-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/google-podcasts-logo-bold.svg new file mode 100644 index 0000000..da513e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/google-podcasts-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gps-bold.svg b/phosphor_orig/SVGs Flat/bold/gps-bold.svg new file mode 100644 index 0000000..4f8de7a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gps-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gps-fix-bold.svg b/phosphor_orig/SVGs Flat/bold/gps-fix-bold.svg new file mode 100644 index 0000000..3c8791e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gps-fix-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gps-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/gps-slash-bold.svg new file mode 100644 index 0000000..d209b27 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gps-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/gradient-bold.svg b/phosphor_orig/SVGs Flat/bold/gradient-bold.svg new file mode 100644 index 0000000..9f96430 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/gradient-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/graduation-cap-bold.svg b/phosphor_orig/SVGs Flat/bold/graduation-cap-bold.svg new file mode 100644 index 0000000..2aa35f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/graduation-cap-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/grains-bold.svg b/phosphor_orig/SVGs Flat/bold/grains-bold.svg new file mode 100644 index 0000000..622f7c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/grains-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/grains-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/grains-slash-bold.svg new file mode 100644 index 0000000..ea5116b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/grains-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/graph-bold.svg b/phosphor_orig/SVGs Flat/bold/graph-bold.svg new file mode 100644 index 0000000..7bb617d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/graph-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/graphics-card-bold.svg b/phosphor_orig/SVGs Flat/bold/graphics-card-bold.svg new file mode 100644 index 0000000..8606f66 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/graphics-card-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/greater-than-bold.svg b/phosphor_orig/SVGs Flat/bold/greater-than-bold.svg new file mode 100644 index 0000000..97457b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/greater-than-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/greater-than-or-equal-bold.svg b/phosphor_orig/SVGs Flat/bold/greater-than-or-equal-bold.svg new file mode 100644 index 0000000..e9f1932 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/greater-than-or-equal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/grid-four-bold.svg b/phosphor_orig/SVGs Flat/bold/grid-four-bold.svg new file mode 100644 index 0000000..6e61610 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/grid-four-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/grid-nine-bold.svg b/phosphor_orig/SVGs Flat/bold/grid-nine-bold.svg new file mode 100644 index 0000000..1fa124a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/grid-nine-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/guitar-bold.svg b/phosphor_orig/SVGs Flat/bold/guitar-bold.svg new file mode 100644 index 0000000..32d943c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/guitar-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hair-dryer-bold.svg b/phosphor_orig/SVGs Flat/bold/hair-dryer-bold.svg new file mode 100644 index 0000000..62a0445 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hair-dryer-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hamburger-bold.svg b/phosphor_orig/SVGs Flat/bold/hamburger-bold.svg new file mode 100644 index 0000000..8185c1f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hamburger-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hammer-bold.svg b/phosphor_orig/SVGs Flat/bold/hammer-bold.svg new file mode 100644 index 0000000..4b9a6c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hammer-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-arrow-down-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-arrow-down-bold.svg new file mode 100644 index 0000000..0d8c806 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-arrow-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-arrow-up-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-arrow-up-bold.svg new file mode 100644 index 0000000..58923fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-arrow-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-bold.svg new file mode 100644 index 0000000..e0b7cff --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-coins-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-coins-bold.svg new file mode 100644 index 0000000..838d572 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-coins-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-deposit-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-deposit-bold.svg new file mode 100644 index 0000000..7b225b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-deposit-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-eye-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-eye-bold.svg new file mode 100644 index 0000000..387f756 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-eye-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-fist-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-fist-bold.svg new file mode 100644 index 0000000..71f1a47 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-fist-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-grabbing-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-grabbing-bold.svg new file mode 100644 index 0000000..5880fec --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-grabbing-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-heart-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-heart-bold.svg new file mode 100644 index 0000000..4df0f77 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-heart-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-palm-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-palm-bold.svg new file mode 100644 index 0000000..508c8b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-palm-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-peace-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-peace-bold.svg new file mode 100644 index 0000000..a29c431 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-peace-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-pointing-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-pointing-bold.svg new file mode 100644 index 0000000..8ddb400 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-pointing-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-soap-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-soap-bold.svg new file mode 100644 index 0000000..dbdd8d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-soap-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-swipe-left-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-swipe-left-bold.svg new file mode 100644 index 0000000..1ec5877 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-swipe-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-swipe-right-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-swipe-right-bold.svg new file mode 100644 index 0000000..b717ac4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-swipe-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-tap-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-tap-bold.svg new file mode 100644 index 0000000..6771fd4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-tap-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-waving-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-waving-bold.svg new file mode 100644 index 0000000..24da4ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-waving-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hand-withdraw-bold.svg b/phosphor_orig/SVGs Flat/bold/hand-withdraw-bold.svg new file mode 100644 index 0000000..614eeed --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hand-withdraw-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/handbag-bold.svg b/phosphor_orig/SVGs Flat/bold/handbag-bold.svg new file mode 100644 index 0000000..38a9e75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/handbag-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/handbag-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/handbag-simple-bold.svg new file mode 100644 index 0000000..f1c5217 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/handbag-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hands-clapping-bold.svg b/phosphor_orig/SVGs Flat/bold/hands-clapping-bold.svg new file mode 100644 index 0000000..9640675 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hands-clapping-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hands-praying-bold.svg b/phosphor_orig/SVGs Flat/bold/hands-praying-bold.svg new file mode 100644 index 0000000..a2335c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hands-praying-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/handshake-bold.svg b/phosphor_orig/SVGs Flat/bold/handshake-bold.svg new file mode 100644 index 0000000..239ff9c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/handshake-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hard-drive-bold.svg b/phosphor_orig/SVGs Flat/bold/hard-drive-bold.svg new file mode 100644 index 0000000..c8654fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hard-drive-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hard-drives-bold.svg b/phosphor_orig/SVGs Flat/bold/hard-drives-bold.svg new file mode 100644 index 0000000..373100b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hard-drives-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hard-hat-bold.svg b/phosphor_orig/SVGs Flat/bold/hard-hat-bold.svg new file mode 100644 index 0000000..a0cf2e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hard-hat-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hash-bold.svg b/phosphor_orig/SVGs Flat/bold/hash-bold.svg new file mode 100644 index 0000000..ef0b493 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hash-straight-bold.svg b/phosphor_orig/SVGs Flat/bold/hash-straight-bold.svg new file mode 100644 index 0000000..2f189f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hash-straight-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/head-circuit-bold.svg b/phosphor_orig/SVGs Flat/bold/head-circuit-bold.svg new file mode 100644 index 0000000..ae97d5a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/head-circuit-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/headlights-bold.svg b/phosphor_orig/SVGs Flat/bold/headlights-bold.svg new file mode 100644 index 0000000..a42a445 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/headlights-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/headphones-bold.svg b/phosphor_orig/SVGs Flat/bold/headphones-bold.svg new file mode 100644 index 0000000..555ff05 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/headphones-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/headset-bold.svg b/phosphor_orig/SVGs Flat/bold/headset-bold.svg new file mode 100644 index 0000000..8ee549d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/headset-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/heart-bold.svg b/phosphor_orig/SVGs Flat/bold/heart-bold.svg new file mode 100644 index 0000000..62a34b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/heart-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/heart-break-bold.svg b/phosphor_orig/SVGs Flat/bold/heart-break-bold.svg new file mode 100644 index 0000000..c49d648 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/heart-break-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/heart-half-bold.svg b/phosphor_orig/SVGs Flat/bold/heart-half-bold.svg new file mode 100644 index 0000000..b6ef66f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/heart-half-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/heart-straight-bold.svg b/phosphor_orig/SVGs Flat/bold/heart-straight-bold.svg new file mode 100644 index 0000000..f249a66 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/heart-straight-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/heart-straight-break-bold.svg b/phosphor_orig/SVGs Flat/bold/heart-straight-break-bold.svg new file mode 100644 index 0000000..cf9d2f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/heart-straight-break-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/heartbeat-bold.svg b/phosphor_orig/SVGs Flat/bold/heartbeat-bold.svg new file mode 100644 index 0000000..cd15955 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/heartbeat-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hexagon-bold.svg b/phosphor_orig/SVGs Flat/bold/hexagon-bold.svg new file mode 100644 index 0000000..49ef2ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hexagon-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/high-definition-bold.svg b/phosphor_orig/SVGs Flat/bold/high-definition-bold.svg new file mode 100644 index 0000000..4a08826 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/high-definition-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/high-heel-bold.svg b/phosphor_orig/SVGs Flat/bold/high-heel-bold.svg new file mode 100644 index 0000000..ffe59d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/high-heel-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/highlighter-bold.svg b/phosphor_orig/SVGs Flat/bold/highlighter-bold.svg new file mode 100644 index 0000000..fb3212e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/highlighter-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/highlighter-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/highlighter-circle-bold.svg new file mode 100644 index 0000000..8919060 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/highlighter-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hockey-bold.svg b/phosphor_orig/SVGs Flat/bold/hockey-bold.svg new file mode 100644 index 0000000..f953430 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hockey-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hoodie-bold.svg b/phosphor_orig/SVGs Flat/bold/hoodie-bold.svg new file mode 100644 index 0000000..7979dd6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hoodie-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/horse-bold.svg b/phosphor_orig/SVGs Flat/bold/horse-bold.svg new file mode 100644 index 0000000..f677eb9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/horse-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hospital-bold.svg b/phosphor_orig/SVGs Flat/bold/hospital-bold.svg new file mode 100644 index 0000000..9ea7cd9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hospital-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hourglass-bold.svg b/phosphor_orig/SVGs Flat/bold/hourglass-bold.svg new file mode 100644 index 0000000..c0e0334 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hourglass-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hourglass-high-bold.svg b/phosphor_orig/SVGs Flat/bold/hourglass-high-bold.svg new file mode 100644 index 0000000..1c09bdc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hourglass-high-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hourglass-low-bold.svg b/phosphor_orig/SVGs Flat/bold/hourglass-low-bold.svg new file mode 100644 index 0000000..9c1a827 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hourglass-low-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hourglass-medium-bold.svg b/phosphor_orig/SVGs Flat/bold/hourglass-medium-bold.svg new file mode 100644 index 0000000..3955492 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hourglass-medium-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hourglass-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/hourglass-simple-bold.svg new file mode 100644 index 0000000..0a52522 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hourglass-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hourglass-simple-high-bold.svg b/phosphor_orig/SVGs Flat/bold/hourglass-simple-high-bold.svg new file mode 100644 index 0000000..92a08bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hourglass-simple-high-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hourglass-simple-low-bold.svg b/phosphor_orig/SVGs Flat/bold/hourglass-simple-low-bold.svg new file mode 100644 index 0000000..8a08348 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hourglass-simple-low-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hourglass-simple-medium-bold.svg b/phosphor_orig/SVGs Flat/bold/hourglass-simple-medium-bold.svg new file mode 100644 index 0000000..2877019 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hourglass-simple-medium-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/house-bold.svg b/phosphor_orig/SVGs Flat/bold/house-bold.svg new file mode 100644 index 0000000..2ad60e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/house-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/house-line-bold.svg b/phosphor_orig/SVGs Flat/bold/house-line-bold.svg new file mode 100644 index 0000000..3aec2f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/house-line-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/house-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/house-simple-bold.svg new file mode 100644 index 0000000..d79e920 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/house-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/hurricane-bold.svg b/phosphor_orig/SVGs Flat/bold/hurricane-bold.svg new file mode 100644 index 0000000..df01162 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/hurricane-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/ice-cream-bold.svg b/phosphor_orig/SVGs Flat/bold/ice-cream-bold.svg new file mode 100644 index 0000000..aaf1893 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/ice-cream-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/identification-badge-bold.svg b/phosphor_orig/SVGs Flat/bold/identification-badge-bold.svg new file mode 100644 index 0000000..4e6031b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/identification-badge-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/identification-card-bold.svg b/phosphor_orig/SVGs Flat/bold/identification-card-bold.svg new file mode 100644 index 0000000..f62d151 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/identification-card-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/image-bold.svg b/phosphor_orig/SVGs Flat/bold/image-bold.svg new file mode 100644 index 0000000..b44ec7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/image-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/image-broken-bold.svg b/phosphor_orig/SVGs Flat/bold/image-broken-bold.svg new file mode 100644 index 0000000..e42714e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/image-broken-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/image-square-bold.svg b/phosphor_orig/SVGs Flat/bold/image-square-bold.svg new file mode 100644 index 0000000..064fb09 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/image-square-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/images-bold.svg b/phosphor_orig/SVGs Flat/bold/images-bold.svg new file mode 100644 index 0000000..23c80bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/images-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/images-square-bold.svg b/phosphor_orig/SVGs Flat/bold/images-square-bold.svg new file mode 100644 index 0000000..05b7a9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/images-square-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/infinity-bold.svg b/phosphor_orig/SVGs Flat/bold/infinity-bold.svg new file mode 100644 index 0000000..eb609a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/infinity-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/info-bold.svg b/phosphor_orig/SVGs Flat/bold/info-bold.svg new file mode 100644 index 0000000..4612dc4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/info-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/instagram-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/instagram-logo-bold.svg new file mode 100644 index 0000000..daef9a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/instagram-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/intersect-bold.svg b/phosphor_orig/SVGs Flat/bold/intersect-bold.svg new file mode 100644 index 0000000..bc710f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/intersect-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/intersect-square-bold.svg b/phosphor_orig/SVGs Flat/bold/intersect-square-bold.svg new file mode 100644 index 0000000..1088dfc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/intersect-square-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/intersect-three-bold.svg b/phosphor_orig/SVGs Flat/bold/intersect-three-bold.svg new file mode 100644 index 0000000..971f76d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/intersect-three-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/intersection-bold.svg b/phosphor_orig/SVGs Flat/bold/intersection-bold.svg new file mode 100644 index 0000000..868b87d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/intersection-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/invoice-bold.svg b/phosphor_orig/SVGs Flat/bold/invoice-bold.svg new file mode 100644 index 0000000..722bb7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/invoice-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/island-bold.svg b/phosphor_orig/SVGs Flat/bold/island-bold.svg new file mode 100644 index 0000000..6942c6b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/island-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/jar-bold.svg b/phosphor_orig/SVGs Flat/bold/jar-bold.svg new file mode 100644 index 0000000..8869f82 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/jar-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/jar-label-bold.svg b/phosphor_orig/SVGs Flat/bold/jar-label-bold.svg new file mode 100644 index 0000000..34819b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/jar-label-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/jeep-bold.svg b/phosphor_orig/SVGs Flat/bold/jeep-bold.svg new file mode 100644 index 0000000..eaad14b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/jeep-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/joystick-bold.svg b/phosphor_orig/SVGs Flat/bold/joystick-bold.svg new file mode 100644 index 0000000..e7f4f32 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/joystick-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/kanban-bold.svg b/phosphor_orig/SVGs Flat/bold/kanban-bold.svg new file mode 100644 index 0000000..bb0129d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/kanban-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/key-bold.svg b/phosphor_orig/SVGs Flat/bold/key-bold.svg new file mode 100644 index 0000000..8632a54 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/key-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/key-return-bold.svg b/phosphor_orig/SVGs Flat/bold/key-return-bold.svg new file mode 100644 index 0000000..1f33133 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/key-return-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/keyboard-bold.svg b/phosphor_orig/SVGs Flat/bold/keyboard-bold.svg new file mode 100644 index 0000000..23e539d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/keyboard-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/keyhole-bold.svg b/phosphor_orig/SVGs Flat/bold/keyhole-bold.svg new file mode 100644 index 0000000..1223f55 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/keyhole-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/knife-bold.svg b/phosphor_orig/SVGs Flat/bold/knife-bold.svg new file mode 100644 index 0000000..78db336 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/knife-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/ladder-bold.svg b/phosphor_orig/SVGs Flat/bold/ladder-bold.svg new file mode 100644 index 0000000..7303acd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/ladder-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/ladder-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/ladder-simple-bold.svg new file mode 100644 index 0000000..a2a5f5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/ladder-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lamp-bold.svg b/phosphor_orig/SVGs Flat/bold/lamp-bold.svg new file mode 100644 index 0000000..e2b945b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lamp-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lamp-pendant-bold.svg b/phosphor_orig/SVGs Flat/bold/lamp-pendant-bold.svg new file mode 100644 index 0000000..84da069 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lamp-pendant-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/laptop-bold.svg b/phosphor_orig/SVGs Flat/bold/laptop-bold.svg new file mode 100644 index 0000000..1a81384 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/laptop-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lasso-bold.svg b/phosphor_orig/SVGs Flat/bold/lasso-bold.svg new file mode 100644 index 0000000..f7c36f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lasso-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lastfm-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/lastfm-logo-bold.svg new file mode 100644 index 0000000..c151bf9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lastfm-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/layout-bold.svg b/phosphor_orig/SVGs Flat/bold/layout-bold.svg new file mode 100644 index 0000000..2e79e3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/layout-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/leaf-bold.svg b/phosphor_orig/SVGs Flat/bold/leaf-bold.svg new file mode 100644 index 0000000..ea89538 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/leaf-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lectern-bold.svg b/phosphor_orig/SVGs Flat/bold/lectern-bold.svg new file mode 100644 index 0000000..2645907 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lectern-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lego-bold.svg b/phosphor_orig/SVGs Flat/bold/lego-bold.svg new file mode 100644 index 0000000..9c595c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lego-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lego-smiley-bold.svg b/phosphor_orig/SVGs Flat/bold/lego-smiley-bold.svg new file mode 100644 index 0000000..8da6c97 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lego-smiley-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/less-than-bold.svg b/phosphor_orig/SVGs Flat/bold/less-than-bold.svg new file mode 100644 index 0000000..2110857 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/less-than-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/less-than-or-equal-bold.svg b/phosphor_orig/SVGs Flat/bold/less-than-or-equal-bold.svg new file mode 100644 index 0000000..225381a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/less-than-or-equal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/letter-circle-h-bold.svg b/phosphor_orig/SVGs Flat/bold/letter-circle-h-bold.svg new file mode 100644 index 0000000..793fff2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/letter-circle-h-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/letter-circle-p-bold.svg b/phosphor_orig/SVGs Flat/bold/letter-circle-p-bold.svg new file mode 100644 index 0000000..5af2825 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/letter-circle-p-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/letter-circle-v-bold.svg b/phosphor_orig/SVGs Flat/bold/letter-circle-v-bold.svg new file mode 100644 index 0000000..cfa2f86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/letter-circle-v-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lifebuoy-bold.svg b/phosphor_orig/SVGs Flat/bold/lifebuoy-bold.svg new file mode 100644 index 0000000..7c9fa11 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lifebuoy-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lightbulb-bold.svg b/phosphor_orig/SVGs Flat/bold/lightbulb-bold.svg new file mode 100644 index 0000000..15166ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lightbulb-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lightbulb-filament-bold.svg b/phosphor_orig/SVGs Flat/bold/lightbulb-filament-bold.svg new file mode 100644 index 0000000..ca19f6b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lightbulb-filament-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lighthouse-bold.svg b/phosphor_orig/SVGs Flat/bold/lighthouse-bold.svg new file mode 100644 index 0000000..adddff7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lighthouse-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lightning-a-bold.svg b/phosphor_orig/SVGs Flat/bold/lightning-a-bold.svg new file mode 100644 index 0000000..7bae1cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lightning-a-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lightning-bold.svg b/phosphor_orig/SVGs Flat/bold/lightning-bold.svg new file mode 100644 index 0000000..e7ba6c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lightning-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lightning-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/lightning-slash-bold.svg new file mode 100644 index 0000000..05d4512 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lightning-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/line-segment-bold.svg b/phosphor_orig/SVGs Flat/bold/line-segment-bold.svg new file mode 100644 index 0000000..b836811 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/line-segment-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/line-segments-bold.svg b/phosphor_orig/SVGs Flat/bold/line-segments-bold.svg new file mode 100644 index 0000000..a3b7909 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/line-segments-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/line-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/line-vertical-bold.svg new file mode 100644 index 0000000..1f937a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/line-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/link-bold.svg b/phosphor_orig/SVGs Flat/bold/link-bold.svg new file mode 100644 index 0000000..6562c09 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/link-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/link-break-bold.svg b/phosphor_orig/SVGs Flat/bold/link-break-bold.svg new file mode 100644 index 0000000..7568cd0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/link-break-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/link-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/link-simple-bold.svg new file mode 100644 index 0000000..1fa4b19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/link-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/link-simple-break-bold.svg b/phosphor_orig/SVGs Flat/bold/link-simple-break-bold.svg new file mode 100644 index 0000000..40a65a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/link-simple-break-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/link-simple-horizontal-bold.svg b/phosphor_orig/SVGs Flat/bold/link-simple-horizontal-bold.svg new file mode 100644 index 0000000..96ac853 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/link-simple-horizontal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/link-simple-horizontal-break-bold.svg b/phosphor_orig/SVGs Flat/bold/link-simple-horizontal-break-bold.svg new file mode 100644 index 0000000..88ef37f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/link-simple-horizontal-break-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/linkedin-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/linkedin-logo-bold.svg new file mode 100644 index 0000000..473901e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/linkedin-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/linktree-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/linktree-logo-bold.svg new file mode 100644 index 0000000..f36ec5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/linktree-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/linux-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/linux-logo-bold.svg new file mode 100644 index 0000000..3c2c5f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/linux-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/list-bold.svg b/phosphor_orig/SVGs Flat/bold/list-bold.svg new file mode 100644 index 0000000..2c0e284 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/list-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/list-bullets-bold.svg b/phosphor_orig/SVGs Flat/bold/list-bullets-bold.svg new file mode 100644 index 0000000..564f59b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/list-bullets-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/list-checks-bold.svg b/phosphor_orig/SVGs Flat/bold/list-checks-bold.svg new file mode 100644 index 0000000..b9f9781 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/list-checks-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/list-dashes-bold.svg b/phosphor_orig/SVGs Flat/bold/list-dashes-bold.svg new file mode 100644 index 0000000..146ec40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/list-dashes-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/list-heart-bold.svg b/phosphor_orig/SVGs Flat/bold/list-heart-bold.svg new file mode 100644 index 0000000..15879db --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/list-heart-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/list-magnifying-glass-bold.svg b/phosphor_orig/SVGs Flat/bold/list-magnifying-glass-bold.svg new file mode 100644 index 0000000..ab3b75c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/list-magnifying-glass-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/list-numbers-bold.svg b/phosphor_orig/SVGs Flat/bold/list-numbers-bold.svg new file mode 100644 index 0000000..9991c1c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/list-numbers-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/list-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/list-plus-bold.svg new file mode 100644 index 0000000..4485496 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/list-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/list-star-bold.svg b/phosphor_orig/SVGs Flat/bold/list-star-bold.svg new file mode 100644 index 0000000..d640582 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/list-star-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lock-bold.svg b/phosphor_orig/SVGs Flat/bold/lock-bold.svg new file mode 100644 index 0000000..90e6f7e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lock-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lock-key-bold.svg b/phosphor_orig/SVGs Flat/bold/lock-key-bold.svg new file mode 100644 index 0000000..3df9b9a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lock-key-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lock-key-open-bold.svg b/phosphor_orig/SVGs Flat/bold/lock-key-open-bold.svg new file mode 100644 index 0000000..b178a18 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lock-key-open-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lock-laminated-bold.svg b/phosphor_orig/SVGs Flat/bold/lock-laminated-bold.svg new file mode 100644 index 0000000..842bf06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lock-laminated-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lock-laminated-open-bold.svg b/phosphor_orig/SVGs Flat/bold/lock-laminated-open-bold.svg new file mode 100644 index 0000000..431f238 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lock-laminated-open-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lock-open-bold.svg b/phosphor_orig/SVGs Flat/bold/lock-open-bold.svg new file mode 100644 index 0000000..ba3f071 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lock-open-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lock-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/lock-simple-bold.svg new file mode 100644 index 0000000..6bc53bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lock-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lock-simple-open-bold.svg b/phosphor_orig/SVGs Flat/bold/lock-simple-open-bold.svg new file mode 100644 index 0000000..7c97adf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lock-simple-open-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/lockers-bold.svg b/phosphor_orig/SVGs Flat/bold/lockers-bold.svg new file mode 100644 index 0000000..bfda7e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/lockers-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/log-bold.svg b/phosphor_orig/SVGs Flat/bold/log-bold.svg new file mode 100644 index 0000000..3a7df5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/log-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/magic-wand-bold.svg b/phosphor_orig/SVGs Flat/bold/magic-wand-bold.svg new file mode 100644 index 0000000..af0d00e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/magic-wand-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/magnet-bold.svg b/phosphor_orig/SVGs Flat/bold/magnet-bold.svg new file mode 100644 index 0000000..a6bd64b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/magnet-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/magnet-straight-bold.svg b/phosphor_orig/SVGs Flat/bold/magnet-straight-bold.svg new file mode 100644 index 0000000..d64bdfc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/magnet-straight-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/magnifying-glass-bold.svg b/phosphor_orig/SVGs Flat/bold/magnifying-glass-bold.svg new file mode 100644 index 0000000..0a90a2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/magnifying-glass-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/magnifying-glass-minus-bold.svg b/phosphor_orig/SVGs Flat/bold/magnifying-glass-minus-bold.svg new file mode 100644 index 0000000..4a50c5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/magnifying-glass-minus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/magnifying-glass-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/magnifying-glass-plus-bold.svg new file mode 100644 index 0000000..95391fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/magnifying-glass-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/mailbox-bold.svg b/phosphor_orig/SVGs Flat/bold/mailbox-bold.svg new file mode 100644 index 0000000..2f805aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/mailbox-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/map-pin-area-bold.svg b/phosphor_orig/SVGs Flat/bold/map-pin-area-bold.svg new file mode 100644 index 0000000..10da1ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/map-pin-area-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/map-pin-bold.svg b/phosphor_orig/SVGs Flat/bold/map-pin-bold.svg new file mode 100644 index 0000000..8a0dc2c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/map-pin-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/map-pin-line-bold.svg b/phosphor_orig/SVGs Flat/bold/map-pin-line-bold.svg new file mode 100644 index 0000000..2068ae5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/map-pin-line-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/map-pin-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/map-pin-plus-bold.svg new file mode 100644 index 0000000..c58218f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/map-pin-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/map-pin-simple-area-bold.svg b/phosphor_orig/SVGs Flat/bold/map-pin-simple-area-bold.svg new file mode 100644 index 0000000..fe2ff99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/map-pin-simple-area-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/map-pin-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/map-pin-simple-bold.svg new file mode 100644 index 0000000..252a316 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/map-pin-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/map-pin-simple-line-bold.svg b/phosphor_orig/SVGs Flat/bold/map-pin-simple-line-bold.svg new file mode 100644 index 0000000..7989994 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/map-pin-simple-line-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/map-trifold-bold.svg b/phosphor_orig/SVGs Flat/bold/map-trifold-bold.svg new file mode 100644 index 0000000..a63b8eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/map-trifold-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/markdown-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/markdown-logo-bold.svg new file mode 100644 index 0000000..276e3ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/markdown-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/marker-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/marker-circle-bold.svg new file mode 100644 index 0000000..46c41ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/marker-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/martini-bold.svg b/phosphor_orig/SVGs Flat/bold/martini-bold.svg new file mode 100644 index 0000000..79b6147 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/martini-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/mask-happy-bold.svg b/phosphor_orig/SVGs Flat/bold/mask-happy-bold.svg new file mode 100644 index 0000000..972cc4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/mask-happy-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/mask-sad-bold.svg b/phosphor_orig/SVGs Flat/bold/mask-sad-bold.svg new file mode 100644 index 0000000..79df3f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/mask-sad-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/mastodon-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/mastodon-logo-bold.svg new file mode 100644 index 0000000..2ba31c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/mastodon-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/math-operations-bold.svg b/phosphor_orig/SVGs Flat/bold/math-operations-bold.svg new file mode 100644 index 0000000..f129d58 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/math-operations-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/matrix-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/matrix-logo-bold.svg new file mode 100644 index 0000000..37d7499 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/matrix-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/medal-bold.svg b/phosphor_orig/SVGs Flat/bold/medal-bold.svg new file mode 100644 index 0000000..c7b556c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/medal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/medal-military-bold.svg b/phosphor_orig/SVGs Flat/bold/medal-military-bold.svg new file mode 100644 index 0000000..b5b0a85 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/medal-military-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/medium-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/medium-logo-bold.svg new file mode 100644 index 0000000..8c59a9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/medium-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/megaphone-bold.svg b/phosphor_orig/SVGs Flat/bold/megaphone-bold.svg new file mode 100644 index 0000000..e9e99a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/megaphone-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/megaphone-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/megaphone-simple-bold.svg new file mode 100644 index 0000000..e45c261 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/megaphone-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/member-of-bold.svg b/phosphor_orig/SVGs Flat/bold/member-of-bold.svg new file mode 100644 index 0000000..87e2078 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/member-of-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/memory-bold.svg b/phosphor_orig/SVGs Flat/bold/memory-bold.svg new file mode 100644 index 0000000..e66f2a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/memory-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/messenger-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/messenger-logo-bold.svg new file mode 100644 index 0000000..f5916d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/messenger-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/meta-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/meta-logo-bold.svg new file mode 100644 index 0000000..11acb3f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/meta-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/meteor-bold.svg b/phosphor_orig/SVGs Flat/bold/meteor-bold.svg new file mode 100644 index 0000000..2291d3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/meteor-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/metronome-bold.svg b/phosphor_orig/SVGs Flat/bold/metronome-bold.svg new file mode 100644 index 0000000..93ed7fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/metronome-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/microphone-bold.svg b/phosphor_orig/SVGs Flat/bold/microphone-bold.svg new file mode 100644 index 0000000..f8ce1aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/microphone-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/microphone-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/microphone-slash-bold.svg new file mode 100644 index 0000000..1e51c3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/microphone-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/microphone-stage-bold.svg b/phosphor_orig/SVGs Flat/bold/microphone-stage-bold.svg new file mode 100644 index 0000000..6631e7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/microphone-stage-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/microscope-bold.svg b/phosphor_orig/SVGs Flat/bold/microscope-bold.svg new file mode 100644 index 0000000..985cc36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/microscope-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/microsoft-excel-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/microsoft-excel-logo-bold.svg new file mode 100644 index 0000000..c8248b0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/microsoft-excel-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/microsoft-outlook-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/microsoft-outlook-logo-bold.svg new file mode 100644 index 0000000..7e86017 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/microsoft-outlook-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/microsoft-powerpoint-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/microsoft-powerpoint-logo-bold.svg new file mode 100644 index 0000000..8f1de35 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/microsoft-powerpoint-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/microsoft-teams-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/microsoft-teams-logo-bold.svg new file mode 100644 index 0000000..a54d0e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/microsoft-teams-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/microsoft-word-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/microsoft-word-logo-bold.svg new file mode 100644 index 0000000..8b070cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/microsoft-word-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/minus-bold.svg b/phosphor_orig/SVGs Flat/bold/minus-bold.svg new file mode 100644 index 0000000..8823195 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/minus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/minus-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/minus-circle-bold.svg new file mode 100644 index 0000000..883aba9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/minus-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/minus-square-bold.svg b/phosphor_orig/SVGs Flat/bold/minus-square-bold.svg new file mode 100644 index 0000000..83a4a3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/minus-square-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/money-bold.svg b/phosphor_orig/SVGs Flat/bold/money-bold.svg new file mode 100644 index 0000000..224dc68 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/money-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/money-wavy-bold.svg b/phosphor_orig/SVGs Flat/bold/money-wavy-bold.svg new file mode 100644 index 0000000..22d614b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/money-wavy-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/monitor-arrow-up-bold.svg b/phosphor_orig/SVGs Flat/bold/monitor-arrow-up-bold.svg new file mode 100644 index 0000000..5f7f529 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/monitor-arrow-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/monitor-bold.svg b/phosphor_orig/SVGs Flat/bold/monitor-bold.svg new file mode 100644 index 0000000..326bf4c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/monitor-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/monitor-play-bold.svg b/phosphor_orig/SVGs Flat/bold/monitor-play-bold.svg new file mode 100644 index 0000000..f0dd6f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/monitor-play-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/moon-bold.svg b/phosphor_orig/SVGs Flat/bold/moon-bold.svg new file mode 100644 index 0000000..bf57886 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/moon-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/moon-stars-bold.svg b/phosphor_orig/SVGs Flat/bold/moon-stars-bold.svg new file mode 100644 index 0000000..87d7bfe --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/moon-stars-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/moped-bold.svg b/phosphor_orig/SVGs Flat/bold/moped-bold.svg new file mode 100644 index 0000000..bee795d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/moped-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/moped-front-bold.svg b/phosphor_orig/SVGs Flat/bold/moped-front-bold.svg new file mode 100644 index 0000000..8911f45 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/moped-front-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/mosque-bold.svg b/phosphor_orig/SVGs Flat/bold/mosque-bold.svg new file mode 100644 index 0000000..1ff257d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/mosque-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/motorcycle-bold.svg b/phosphor_orig/SVGs Flat/bold/motorcycle-bold.svg new file mode 100644 index 0000000..3180131 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/motorcycle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/mountains-bold.svg b/phosphor_orig/SVGs Flat/bold/mountains-bold.svg new file mode 100644 index 0000000..7335e54 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/mountains-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/mouse-bold.svg b/phosphor_orig/SVGs Flat/bold/mouse-bold.svg new file mode 100644 index 0000000..c30976b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/mouse-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/mouse-left-click-bold.svg b/phosphor_orig/SVGs Flat/bold/mouse-left-click-bold.svg new file mode 100644 index 0000000..261ce3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/mouse-left-click-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/mouse-middle-click-bold.svg b/phosphor_orig/SVGs Flat/bold/mouse-middle-click-bold.svg new file mode 100644 index 0000000..b687362 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/mouse-middle-click-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/mouse-right-click-bold.svg b/phosphor_orig/SVGs Flat/bold/mouse-right-click-bold.svg new file mode 100644 index 0000000..22c60d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/mouse-right-click-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/mouse-scroll-bold.svg b/phosphor_orig/SVGs Flat/bold/mouse-scroll-bold.svg new file mode 100644 index 0000000..22a1ef3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/mouse-scroll-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/mouse-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/mouse-simple-bold.svg new file mode 100644 index 0000000..e0e3533 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/mouse-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/music-note-bold.svg b/phosphor_orig/SVGs Flat/bold/music-note-bold.svg new file mode 100644 index 0000000..3204575 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/music-note-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/music-note-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/music-note-simple-bold.svg new file mode 100644 index 0000000..81bd413 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/music-note-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/music-notes-bold.svg b/phosphor_orig/SVGs Flat/bold/music-notes-bold.svg new file mode 100644 index 0000000..9f7e094 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/music-notes-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/music-notes-minus-bold.svg b/phosphor_orig/SVGs Flat/bold/music-notes-minus-bold.svg new file mode 100644 index 0000000..5621f9b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/music-notes-minus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/music-notes-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/music-notes-plus-bold.svg new file mode 100644 index 0000000..532dac6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/music-notes-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/music-notes-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/music-notes-simple-bold.svg new file mode 100644 index 0000000..5ab605e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/music-notes-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/navigation-arrow-bold.svg b/phosphor_orig/SVGs Flat/bold/navigation-arrow-bold.svg new file mode 100644 index 0000000..322f7a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/navigation-arrow-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/needle-bold.svg b/phosphor_orig/SVGs Flat/bold/needle-bold.svg new file mode 100644 index 0000000..2ce11b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/needle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/network-bold.svg b/phosphor_orig/SVGs Flat/bold/network-bold.svg new file mode 100644 index 0000000..e5e70c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/network-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/network-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/network-slash-bold.svg new file mode 100644 index 0000000..31c5253 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/network-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/network-x-bold.svg b/phosphor_orig/SVGs Flat/bold/network-x-bold.svg new file mode 100644 index 0000000..3d2066b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/network-x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/newspaper-bold.svg b/phosphor_orig/SVGs Flat/bold/newspaper-bold.svg new file mode 100644 index 0000000..2ff363e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/newspaper-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/newspaper-clipping-bold.svg b/phosphor_orig/SVGs Flat/bold/newspaper-clipping-bold.svg new file mode 100644 index 0000000..8a30d42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/newspaper-clipping-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/not-equals-bold.svg b/phosphor_orig/SVGs Flat/bold/not-equals-bold.svg new file mode 100644 index 0000000..123aa8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/not-equals-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/not-member-of-bold.svg b/phosphor_orig/SVGs Flat/bold/not-member-of-bold.svg new file mode 100644 index 0000000..59f893b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/not-member-of-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/not-subset-of-bold.svg b/phosphor_orig/SVGs Flat/bold/not-subset-of-bold.svg new file mode 100644 index 0000000..447288b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/not-subset-of-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/not-superset-of-bold.svg b/phosphor_orig/SVGs Flat/bold/not-superset-of-bold.svg new file mode 100644 index 0000000..789680d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/not-superset-of-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/notches-bold.svg b/phosphor_orig/SVGs Flat/bold/notches-bold.svg new file mode 100644 index 0000000..230309a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/notches-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/note-blank-bold.svg b/phosphor_orig/SVGs Flat/bold/note-blank-bold.svg new file mode 100644 index 0000000..693a67e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/note-blank-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/note-bold.svg b/phosphor_orig/SVGs Flat/bold/note-bold.svg new file mode 100644 index 0000000..06975a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/note-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/note-pencil-bold.svg b/phosphor_orig/SVGs Flat/bold/note-pencil-bold.svg new file mode 100644 index 0000000..913220d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/note-pencil-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/notebook-bold.svg b/phosphor_orig/SVGs Flat/bold/notebook-bold.svg new file mode 100644 index 0000000..77668ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/notebook-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/notepad-bold.svg b/phosphor_orig/SVGs Flat/bold/notepad-bold.svg new file mode 100644 index 0000000..27ebf9a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/notepad-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/notification-bold.svg b/phosphor_orig/SVGs Flat/bold/notification-bold.svg new file mode 100644 index 0000000..b55b653 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/notification-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/notion-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/notion-logo-bold.svg new file mode 100644 index 0000000..6e58040 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/notion-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/nuclear-plant-bold.svg b/phosphor_orig/SVGs Flat/bold/nuclear-plant-bold.svg new file mode 100644 index 0000000..aab8db2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/nuclear-plant-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-circle-eight-bold.svg b/phosphor_orig/SVGs Flat/bold/number-circle-eight-bold.svg new file mode 100644 index 0000000..7f656ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-circle-eight-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-circle-five-bold.svg b/phosphor_orig/SVGs Flat/bold/number-circle-five-bold.svg new file mode 100644 index 0000000..887ed8e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-circle-five-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-circle-four-bold.svg b/phosphor_orig/SVGs Flat/bold/number-circle-four-bold.svg new file mode 100644 index 0000000..8eac8f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-circle-four-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-circle-nine-bold.svg b/phosphor_orig/SVGs Flat/bold/number-circle-nine-bold.svg new file mode 100644 index 0000000..1e9ce9c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-circle-nine-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-circle-one-bold.svg b/phosphor_orig/SVGs Flat/bold/number-circle-one-bold.svg new file mode 100644 index 0000000..34825d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-circle-one-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-circle-seven-bold.svg b/phosphor_orig/SVGs Flat/bold/number-circle-seven-bold.svg new file mode 100644 index 0000000..09c62e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-circle-seven-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-circle-six-bold.svg b/phosphor_orig/SVGs Flat/bold/number-circle-six-bold.svg new file mode 100644 index 0000000..ff38f3d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-circle-six-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-circle-three-bold.svg b/phosphor_orig/SVGs Flat/bold/number-circle-three-bold.svg new file mode 100644 index 0000000..6d349c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-circle-three-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-circle-two-bold.svg b/phosphor_orig/SVGs Flat/bold/number-circle-two-bold.svg new file mode 100644 index 0000000..4c489bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-circle-two-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-circle-zero-bold.svg b/phosphor_orig/SVGs Flat/bold/number-circle-zero-bold.svg new file mode 100644 index 0000000..5e7de24 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-circle-zero-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-eight-bold.svg b/phosphor_orig/SVGs Flat/bold/number-eight-bold.svg new file mode 100644 index 0000000..618e8f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-eight-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-five-bold.svg b/phosphor_orig/SVGs Flat/bold/number-five-bold.svg new file mode 100644 index 0000000..59af234 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-five-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-four-bold.svg b/phosphor_orig/SVGs Flat/bold/number-four-bold.svg new file mode 100644 index 0000000..8bc0220 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-four-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-nine-bold.svg b/phosphor_orig/SVGs Flat/bold/number-nine-bold.svg new file mode 100644 index 0000000..9e1ade7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-nine-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-one-bold.svg b/phosphor_orig/SVGs Flat/bold/number-one-bold.svg new file mode 100644 index 0000000..2edb212 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-one-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-seven-bold.svg b/phosphor_orig/SVGs Flat/bold/number-seven-bold.svg new file mode 100644 index 0000000..47f8b0e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-seven-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-six-bold.svg b/phosphor_orig/SVGs Flat/bold/number-six-bold.svg new file mode 100644 index 0000000..aa6aef3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-six-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-square-eight-bold.svg b/phosphor_orig/SVGs Flat/bold/number-square-eight-bold.svg new file mode 100644 index 0000000..5447c62 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-square-eight-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-square-five-bold.svg b/phosphor_orig/SVGs Flat/bold/number-square-five-bold.svg new file mode 100644 index 0000000..4e96d93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-square-five-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-square-four-bold.svg b/phosphor_orig/SVGs Flat/bold/number-square-four-bold.svg new file mode 100644 index 0000000..f3a4626 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-square-four-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-square-nine-bold.svg b/phosphor_orig/SVGs Flat/bold/number-square-nine-bold.svg new file mode 100644 index 0000000..2816f60 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-square-nine-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-square-one-bold.svg b/phosphor_orig/SVGs Flat/bold/number-square-one-bold.svg new file mode 100644 index 0000000..e63f6f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-square-one-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-square-seven-bold.svg b/phosphor_orig/SVGs Flat/bold/number-square-seven-bold.svg new file mode 100644 index 0000000..f5092e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-square-seven-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-square-six-bold.svg b/phosphor_orig/SVGs Flat/bold/number-square-six-bold.svg new file mode 100644 index 0000000..ae9a369 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-square-six-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-square-three-bold.svg b/phosphor_orig/SVGs Flat/bold/number-square-three-bold.svg new file mode 100644 index 0000000..50554d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-square-three-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-square-two-bold.svg b/phosphor_orig/SVGs Flat/bold/number-square-two-bold.svg new file mode 100644 index 0000000..8c44ae4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-square-two-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-square-zero-bold.svg b/phosphor_orig/SVGs Flat/bold/number-square-zero-bold.svg new file mode 100644 index 0000000..20a491f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-square-zero-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-three-bold.svg b/phosphor_orig/SVGs Flat/bold/number-three-bold.svg new file mode 100644 index 0000000..c1905cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-three-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-two-bold.svg b/phosphor_orig/SVGs Flat/bold/number-two-bold.svg new file mode 100644 index 0000000..e69a22d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-two-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/number-zero-bold.svg b/phosphor_orig/SVGs Flat/bold/number-zero-bold.svg new file mode 100644 index 0000000..a363549 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/number-zero-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/numpad-bold.svg b/phosphor_orig/SVGs Flat/bold/numpad-bold.svg new file mode 100644 index 0000000..c01d439 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/numpad-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/nut-bold.svg b/phosphor_orig/SVGs Flat/bold/nut-bold.svg new file mode 100644 index 0000000..6f110bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/nut-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/ny-times-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/ny-times-logo-bold.svg new file mode 100644 index 0000000..415fc83 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/ny-times-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/octagon-bold.svg b/phosphor_orig/SVGs Flat/bold/octagon-bold.svg new file mode 100644 index 0000000..fa71b5a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/octagon-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/office-chair-bold.svg b/phosphor_orig/SVGs Flat/bold/office-chair-bold.svg new file mode 100644 index 0000000..a9ca617 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/office-chair-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/onigiri-bold.svg b/phosphor_orig/SVGs Flat/bold/onigiri-bold.svg new file mode 100644 index 0000000..ef4e497 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/onigiri-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/open-ai-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/open-ai-logo-bold.svg new file mode 100644 index 0000000..8d92b5b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/open-ai-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/option-bold.svg b/phosphor_orig/SVGs Flat/bold/option-bold.svg new file mode 100644 index 0000000..0b0838b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/option-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/orange-bold.svg b/phosphor_orig/SVGs Flat/bold/orange-bold.svg new file mode 100644 index 0000000..42ceec2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/orange-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/orange-slice-bold.svg b/phosphor_orig/SVGs Flat/bold/orange-slice-bold.svg new file mode 100644 index 0000000..7db9e60 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/orange-slice-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/oven-bold.svg b/phosphor_orig/SVGs Flat/bold/oven-bold.svg new file mode 100644 index 0000000..c80c7e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/oven-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/package-bold.svg b/phosphor_orig/SVGs Flat/bold/package-bold.svg new file mode 100644 index 0000000..b3366e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/package-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/paint-brush-bold.svg b/phosphor_orig/SVGs Flat/bold/paint-brush-bold.svg new file mode 100644 index 0000000..935c4d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/paint-brush-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/paint-brush-broad-bold.svg b/phosphor_orig/SVGs Flat/bold/paint-brush-broad-bold.svg new file mode 100644 index 0000000..e7c02c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/paint-brush-broad-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/paint-brush-household-bold.svg b/phosphor_orig/SVGs Flat/bold/paint-brush-household-bold.svg new file mode 100644 index 0000000..b420369 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/paint-brush-household-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/paint-bucket-bold.svg b/phosphor_orig/SVGs Flat/bold/paint-bucket-bold.svg new file mode 100644 index 0000000..a4004e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/paint-bucket-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/paint-roller-bold.svg b/phosphor_orig/SVGs Flat/bold/paint-roller-bold.svg new file mode 100644 index 0000000..44ac4c3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/paint-roller-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/palette-bold.svg b/phosphor_orig/SVGs Flat/bold/palette-bold.svg new file mode 100644 index 0000000..d45c22d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/palette-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/panorama-bold.svg b/phosphor_orig/SVGs Flat/bold/panorama-bold.svg new file mode 100644 index 0000000..79a7f21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/panorama-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pants-bold.svg b/phosphor_orig/SVGs Flat/bold/pants-bold.svg new file mode 100644 index 0000000..169d180 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pants-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/paper-plane-bold.svg b/phosphor_orig/SVGs Flat/bold/paper-plane-bold.svg new file mode 100644 index 0000000..03a0728 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/paper-plane-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/paper-plane-right-bold.svg b/phosphor_orig/SVGs Flat/bold/paper-plane-right-bold.svg new file mode 100644 index 0000000..8aa75b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/paper-plane-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/paper-plane-tilt-bold.svg b/phosphor_orig/SVGs Flat/bold/paper-plane-tilt-bold.svg new file mode 100644 index 0000000..8c56cdf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/paper-plane-tilt-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/paperclip-bold.svg b/phosphor_orig/SVGs Flat/bold/paperclip-bold.svg new file mode 100644 index 0000000..cc2ebd7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/paperclip-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/paperclip-horizontal-bold.svg b/phosphor_orig/SVGs Flat/bold/paperclip-horizontal-bold.svg new file mode 100644 index 0000000..322111b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/paperclip-horizontal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/parachute-bold.svg b/phosphor_orig/SVGs Flat/bold/parachute-bold.svg new file mode 100644 index 0000000..2c8f4f0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/parachute-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/paragraph-bold.svg b/phosphor_orig/SVGs Flat/bold/paragraph-bold.svg new file mode 100644 index 0000000..9ab69f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/paragraph-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/parallelogram-bold.svg b/phosphor_orig/SVGs Flat/bold/parallelogram-bold.svg new file mode 100644 index 0000000..bdbb33a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/parallelogram-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/park-bold.svg b/phosphor_orig/SVGs Flat/bold/park-bold.svg new file mode 100644 index 0000000..bd06165 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/park-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/password-bold.svg b/phosphor_orig/SVGs Flat/bold/password-bold.svg new file mode 100644 index 0000000..025d23b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/password-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/path-bold.svg b/phosphor_orig/SVGs Flat/bold/path-bold.svg new file mode 100644 index 0000000..311f7db --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/path-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/patreon-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/patreon-logo-bold.svg new file mode 100644 index 0000000..9220694 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/patreon-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pause-bold.svg b/phosphor_orig/SVGs Flat/bold/pause-bold.svg new file mode 100644 index 0000000..80be3b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pause-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pause-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/pause-circle-bold.svg new file mode 100644 index 0000000..3f76655 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pause-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/paw-print-bold.svg b/phosphor_orig/SVGs Flat/bold/paw-print-bold.svg new file mode 100644 index 0000000..ee17c93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/paw-print-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/paypal-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/paypal-logo-bold.svg new file mode 100644 index 0000000..8f26f53 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/paypal-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/peace-bold.svg b/phosphor_orig/SVGs Flat/bold/peace-bold.svg new file mode 100644 index 0000000..01d675a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/peace-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pen-bold.svg b/phosphor_orig/SVGs Flat/bold/pen-bold.svg new file mode 100644 index 0000000..52b23e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pen-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pen-nib-bold.svg b/phosphor_orig/SVGs Flat/bold/pen-nib-bold.svg new file mode 100644 index 0000000..59b5a20 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pen-nib-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pen-nib-straight-bold.svg b/phosphor_orig/SVGs Flat/bold/pen-nib-straight-bold.svg new file mode 100644 index 0000000..8d45d49 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pen-nib-straight-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pencil-bold.svg b/phosphor_orig/SVGs Flat/bold/pencil-bold.svg new file mode 100644 index 0000000..117e127 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pencil-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pencil-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/pencil-circle-bold.svg new file mode 100644 index 0000000..3974205 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pencil-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pencil-line-bold.svg b/phosphor_orig/SVGs Flat/bold/pencil-line-bold.svg new file mode 100644 index 0000000..0eaee53 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pencil-line-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pencil-ruler-bold.svg b/phosphor_orig/SVGs Flat/bold/pencil-ruler-bold.svg new file mode 100644 index 0000000..e1d4bd3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pencil-ruler-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pencil-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/pencil-simple-bold.svg new file mode 100644 index 0000000..83e2db0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pencil-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pencil-simple-line-bold.svg b/phosphor_orig/SVGs Flat/bold/pencil-simple-line-bold.svg new file mode 100644 index 0000000..55720fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pencil-simple-line-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pencil-simple-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/pencil-simple-slash-bold.svg new file mode 100644 index 0000000..3d2f7b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pencil-simple-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pencil-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/pencil-slash-bold.svg new file mode 100644 index 0000000..de27195 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pencil-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pentagon-bold.svg b/phosphor_orig/SVGs Flat/bold/pentagon-bold.svg new file mode 100644 index 0000000..e489cf9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pentagon-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pentagram-bold.svg b/phosphor_orig/SVGs Flat/bold/pentagram-bold.svg new file mode 100644 index 0000000..2bce392 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pentagram-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pepper-bold.svg b/phosphor_orig/SVGs Flat/bold/pepper-bold.svg new file mode 100644 index 0000000..f154926 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pepper-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/percent-bold.svg b/phosphor_orig/SVGs Flat/bold/percent-bold.svg new file mode 100644 index 0000000..b5f0c22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/percent-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/person-arms-spread-bold.svg b/phosphor_orig/SVGs Flat/bold/person-arms-spread-bold.svg new file mode 100644 index 0000000..2cb85c6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/person-arms-spread-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/person-bold.svg b/phosphor_orig/SVGs Flat/bold/person-bold.svg new file mode 100644 index 0000000..87ae2f0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/person-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/person-simple-bike-bold.svg b/phosphor_orig/SVGs Flat/bold/person-simple-bike-bold.svg new file mode 100644 index 0000000..2dc65b0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/person-simple-bike-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/person-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/person-simple-bold.svg new file mode 100644 index 0000000..bf73ba8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/person-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/person-simple-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/person-simple-circle-bold.svg new file mode 100644 index 0000000..4190ad2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/person-simple-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/person-simple-hike-bold.svg b/phosphor_orig/SVGs Flat/bold/person-simple-hike-bold.svg new file mode 100644 index 0000000..d9e0bec --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/person-simple-hike-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/person-simple-run-bold.svg b/phosphor_orig/SVGs Flat/bold/person-simple-run-bold.svg new file mode 100644 index 0000000..62d97d0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/person-simple-run-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/person-simple-ski-bold.svg b/phosphor_orig/SVGs Flat/bold/person-simple-ski-bold.svg new file mode 100644 index 0000000..89a4bf2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/person-simple-ski-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/person-simple-snowboard-bold.svg b/phosphor_orig/SVGs Flat/bold/person-simple-snowboard-bold.svg new file mode 100644 index 0000000..0c8ce48 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/person-simple-snowboard-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/person-simple-swim-bold.svg b/phosphor_orig/SVGs Flat/bold/person-simple-swim-bold.svg new file mode 100644 index 0000000..e42d880 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/person-simple-swim-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/person-simple-tai-chi-bold.svg b/phosphor_orig/SVGs Flat/bold/person-simple-tai-chi-bold.svg new file mode 100644 index 0000000..4f3e742 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/person-simple-tai-chi-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/person-simple-throw-bold.svg b/phosphor_orig/SVGs Flat/bold/person-simple-throw-bold.svg new file mode 100644 index 0000000..2a0f5f0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/person-simple-throw-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/person-simple-walk-bold.svg b/phosphor_orig/SVGs Flat/bold/person-simple-walk-bold.svg new file mode 100644 index 0000000..f818c9f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/person-simple-walk-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/perspective-bold.svg b/phosphor_orig/SVGs Flat/bold/perspective-bold.svg new file mode 100644 index 0000000..a52ec7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/perspective-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/phone-bold.svg b/phosphor_orig/SVGs Flat/bold/phone-bold.svg new file mode 100644 index 0000000..4628af5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/phone-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/phone-call-bold.svg b/phosphor_orig/SVGs Flat/bold/phone-call-bold.svg new file mode 100644 index 0000000..2580fcd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/phone-call-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/phone-disconnect-bold.svg b/phosphor_orig/SVGs Flat/bold/phone-disconnect-bold.svg new file mode 100644 index 0000000..0d85365 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/phone-disconnect-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/phone-incoming-bold.svg b/phosphor_orig/SVGs Flat/bold/phone-incoming-bold.svg new file mode 100644 index 0000000..6733135 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/phone-incoming-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/phone-list-bold.svg b/phosphor_orig/SVGs Flat/bold/phone-list-bold.svg new file mode 100644 index 0000000..6b3a80b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/phone-list-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/phone-outgoing-bold.svg b/phosphor_orig/SVGs Flat/bold/phone-outgoing-bold.svg new file mode 100644 index 0000000..98411bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/phone-outgoing-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/phone-pause-bold.svg b/phosphor_orig/SVGs Flat/bold/phone-pause-bold.svg new file mode 100644 index 0000000..e86cd50 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/phone-pause-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/phone-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/phone-plus-bold.svg new file mode 100644 index 0000000..4981283 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/phone-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/phone-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/phone-slash-bold.svg new file mode 100644 index 0000000..3c65de5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/phone-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/phone-transfer-bold.svg b/phosphor_orig/SVGs Flat/bold/phone-transfer-bold.svg new file mode 100644 index 0000000..4226cf5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/phone-transfer-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/phone-x-bold.svg b/phosphor_orig/SVGs Flat/bold/phone-x-bold.svg new file mode 100644 index 0000000..29a8916 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/phone-x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/phosphor-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/phosphor-logo-bold.svg new file mode 100644 index 0000000..929b7d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/phosphor-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pi-bold.svg b/phosphor_orig/SVGs Flat/bold/pi-bold.svg new file mode 100644 index 0000000..e3802b0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pi-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/piano-keys-bold.svg b/phosphor_orig/SVGs Flat/bold/piano-keys-bold.svg new file mode 100644 index 0000000..df0345c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/piano-keys-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/picnic-table-bold.svg b/phosphor_orig/SVGs Flat/bold/picnic-table-bold.svg new file mode 100644 index 0000000..4d3126b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/picnic-table-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/picture-in-picture-bold.svg b/phosphor_orig/SVGs Flat/bold/picture-in-picture-bold.svg new file mode 100644 index 0000000..2468896 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/picture-in-picture-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/piggy-bank-bold.svg b/phosphor_orig/SVGs Flat/bold/piggy-bank-bold.svg new file mode 100644 index 0000000..55711be --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/piggy-bank-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pill-bold.svg b/phosphor_orig/SVGs Flat/bold/pill-bold.svg new file mode 100644 index 0000000..60b23ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pill-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/ping-pong-bold.svg b/phosphor_orig/SVGs Flat/bold/ping-pong-bold.svg new file mode 100644 index 0000000..0172cf0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/ping-pong-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pint-glass-bold.svg b/phosphor_orig/SVGs Flat/bold/pint-glass-bold.svg new file mode 100644 index 0000000..561dee5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pint-glass-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pinterest-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/pinterest-logo-bold.svg new file mode 100644 index 0000000..e13a931 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pinterest-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pinwheel-bold.svg b/phosphor_orig/SVGs Flat/bold/pinwheel-bold.svg new file mode 100644 index 0000000..dec2af8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pinwheel-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pipe-bold.svg b/phosphor_orig/SVGs Flat/bold/pipe-bold.svg new file mode 100644 index 0000000..cc4f272 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pipe-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pipe-wrench-bold.svg b/phosphor_orig/SVGs Flat/bold/pipe-wrench-bold.svg new file mode 100644 index 0000000..0312826 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pipe-wrench-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pix-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/pix-logo-bold.svg new file mode 100644 index 0000000..1c83edd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pix-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pizza-bold.svg b/phosphor_orig/SVGs Flat/bold/pizza-bold.svg new file mode 100644 index 0000000..14c6643 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pizza-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/placeholder-bold.svg b/phosphor_orig/SVGs Flat/bold/placeholder-bold.svg new file mode 100644 index 0000000..052823c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/placeholder-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/planet-bold.svg b/phosphor_orig/SVGs Flat/bold/planet-bold.svg new file mode 100644 index 0000000..aaa8389 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/planet-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/plant-bold.svg b/phosphor_orig/SVGs Flat/bold/plant-bold.svg new file mode 100644 index 0000000..a14373a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/plant-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/play-bold.svg b/phosphor_orig/SVGs Flat/bold/play-bold.svg new file mode 100644 index 0000000..a93f03c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/play-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/play-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/play-circle-bold.svg new file mode 100644 index 0000000..5f1d7a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/play-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/play-pause-bold.svg b/phosphor_orig/SVGs Flat/bold/play-pause-bold.svg new file mode 100644 index 0000000..66d8cfe --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/play-pause-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/playlist-bold.svg b/phosphor_orig/SVGs Flat/bold/playlist-bold.svg new file mode 100644 index 0000000..baa6a89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/playlist-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/plug-bold.svg b/phosphor_orig/SVGs Flat/bold/plug-bold.svg new file mode 100644 index 0000000..d9fb7f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/plug-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/plug-charging-bold.svg b/phosphor_orig/SVGs Flat/bold/plug-charging-bold.svg new file mode 100644 index 0000000..f96c589 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/plug-charging-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/plugs-bold.svg b/phosphor_orig/SVGs Flat/bold/plugs-bold.svg new file mode 100644 index 0000000..169076d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/plugs-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/plugs-connected-bold.svg b/phosphor_orig/SVGs Flat/bold/plugs-connected-bold.svg new file mode 100644 index 0000000..5a0f633 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/plugs-connected-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/plus-bold.svg b/phosphor_orig/SVGs Flat/bold/plus-bold.svg new file mode 100644 index 0000000..4ce77ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/plus-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/plus-circle-bold.svg new file mode 100644 index 0000000..b086e8d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/plus-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/plus-minus-bold.svg b/phosphor_orig/SVGs Flat/bold/plus-minus-bold.svg new file mode 100644 index 0000000..2219c0a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/plus-minus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/plus-square-bold.svg b/phosphor_orig/SVGs Flat/bold/plus-square-bold.svg new file mode 100644 index 0000000..3a93a2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/plus-square-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/poker-chip-bold.svg b/phosphor_orig/SVGs Flat/bold/poker-chip-bold.svg new file mode 100644 index 0000000..8fb65a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/poker-chip-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/police-car-bold.svg b/phosphor_orig/SVGs Flat/bold/police-car-bold.svg new file mode 100644 index 0000000..79fdc74 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/police-car-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/polygon-bold.svg b/phosphor_orig/SVGs Flat/bold/polygon-bold.svg new file mode 100644 index 0000000..af49ede --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/polygon-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/popcorn-bold.svg b/phosphor_orig/SVGs Flat/bold/popcorn-bold.svg new file mode 100644 index 0000000..b115fb6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/popcorn-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/popsicle-bold.svg b/phosphor_orig/SVGs Flat/bold/popsicle-bold.svg new file mode 100644 index 0000000..0b9373d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/popsicle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/potted-plant-bold.svg b/phosphor_orig/SVGs Flat/bold/potted-plant-bold.svg new file mode 100644 index 0000000..718dab4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/potted-plant-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/power-bold.svg b/phosphor_orig/SVGs Flat/bold/power-bold.svg new file mode 100644 index 0000000..e3dbae2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/power-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/prescription-bold.svg b/phosphor_orig/SVGs Flat/bold/prescription-bold.svg new file mode 100644 index 0000000..5d48010 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/prescription-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/presentation-bold.svg b/phosphor_orig/SVGs Flat/bold/presentation-bold.svg new file mode 100644 index 0000000..4fba644 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/presentation-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/presentation-chart-bold.svg b/phosphor_orig/SVGs Flat/bold/presentation-chart-bold.svg new file mode 100644 index 0000000..708e355 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/presentation-chart-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/printer-bold.svg b/phosphor_orig/SVGs Flat/bold/printer-bold.svg new file mode 100644 index 0000000..e45703d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/printer-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/prohibit-bold.svg b/phosphor_orig/SVGs Flat/bold/prohibit-bold.svg new file mode 100644 index 0000000..d711acf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/prohibit-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/prohibit-inset-bold.svg b/phosphor_orig/SVGs Flat/bold/prohibit-inset-bold.svg new file mode 100644 index 0000000..55c05c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/prohibit-inset-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/projector-screen-bold.svg b/phosphor_orig/SVGs Flat/bold/projector-screen-bold.svg new file mode 100644 index 0000000..4ceaf89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/projector-screen-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/projector-screen-chart-bold.svg b/phosphor_orig/SVGs Flat/bold/projector-screen-chart-bold.svg new file mode 100644 index 0000000..9d5cfd6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/projector-screen-chart-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/pulse-bold.svg b/phosphor_orig/SVGs Flat/bold/pulse-bold.svg new file mode 100644 index 0000000..34e20da --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/pulse-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/push-pin-bold.svg b/phosphor_orig/SVGs Flat/bold/push-pin-bold.svg new file mode 100644 index 0000000..d63dd0c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/push-pin-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/push-pin-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/push-pin-simple-bold.svg new file mode 100644 index 0000000..258cc66 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/push-pin-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/push-pin-simple-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/push-pin-simple-slash-bold.svg new file mode 100644 index 0000000..9b3db92 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/push-pin-simple-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/push-pin-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/push-pin-slash-bold.svg new file mode 100644 index 0000000..cf6d419 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/push-pin-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/puzzle-piece-bold.svg b/phosphor_orig/SVGs Flat/bold/puzzle-piece-bold.svg new file mode 100644 index 0000000..2db5eef --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/puzzle-piece-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/qr-code-bold.svg b/phosphor_orig/SVGs Flat/bold/qr-code-bold.svg new file mode 100644 index 0000000..e6c7f0f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/qr-code-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/question-bold.svg b/phosphor_orig/SVGs Flat/bold/question-bold.svg new file mode 100644 index 0000000..9015af1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/question-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/question-mark-bold.svg b/phosphor_orig/SVGs Flat/bold/question-mark-bold.svg new file mode 100644 index 0000000..4f517e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/question-mark-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/queue-bold.svg b/phosphor_orig/SVGs Flat/bold/queue-bold.svg new file mode 100644 index 0000000..116da76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/queue-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/quotes-bold.svg b/phosphor_orig/SVGs Flat/bold/quotes-bold.svg new file mode 100644 index 0000000..c8907ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/quotes-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/rabbit-bold.svg b/phosphor_orig/SVGs Flat/bold/rabbit-bold.svg new file mode 100644 index 0000000..6d70ccb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/rabbit-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/racquet-bold.svg b/phosphor_orig/SVGs Flat/bold/racquet-bold.svg new file mode 100644 index 0000000..a5d68e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/racquet-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/radical-bold.svg b/phosphor_orig/SVGs Flat/bold/radical-bold.svg new file mode 100644 index 0000000..3cb0e8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/radical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/radio-bold.svg b/phosphor_orig/SVGs Flat/bold/radio-bold.svg new file mode 100644 index 0000000..40fcd9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/radio-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/radio-button-bold.svg b/phosphor_orig/SVGs Flat/bold/radio-button-bold.svg new file mode 100644 index 0000000..f5c91dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/radio-button-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/radioactive-bold.svg b/phosphor_orig/SVGs Flat/bold/radioactive-bold.svg new file mode 100644 index 0000000..a05a793 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/radioactive-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/rainbow-bold.svg b/phosphor_orig/SVGs Flat/bold/rainbow-bold.svg new file mode 100644 index 0000000..cb645c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/rainbow-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/rainbow-cloud-bold.svg b/phosphor_orig/SVGs Flat/bold/rainbow-cloud-bold.svg new file mode 100644 index 0000000..74cf3a8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/rainbow-cloud-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/ranking-bold.svg b/phosphor_orig/SVGs Flat/bold/ranking-bold.svg new file mode 100644 index 0000000..5cde348 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/ranking-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/read-cv-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/read-cv-logo-bold.svg new file mode 100644 index 0000000..b327b51 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/read-cv-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/receipt-bold.svg b/phosphor_orig/SVGs Flat/bold/receipt-bold.svg new file mode 100644 index 0000000..add6be6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/receipt-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/receipt-x-bold.svg b/phosphor_orig/SVGs Flat/bold/receipt-x-bold.svg new file mode 100644 index 0000000..04bc0ff --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/receipt-x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/record-bold.svg b/phosphor_orig/SVGs Flat/bold/record-bold.svg new file mode 100644 index 0000000..ced795d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/record-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/rectangle-bold.svg b/phosphor_orig/SVGs Flat/bold/rectangle-bold.svg new file mode 100644 index 0000000..0adfa6f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/rectangle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/rectangle-dashed-bold.svg b/phosphor_orig/SVGs Flat/bold/rectangle-dashed-bold.svg new file mode 100644 index 0000000..3eacb99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/rectangle-dashed-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/recycle-bold.svg b/phosphor_orig/SVGs Flat/bold/recycle-bold.svg new file mode 100644 index 0000000..ff6e961 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/recycle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/reddit-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/reddit-logo-bold.svg new file mode 100644 index 0000000..5358623 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/reddit-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/repeat-bold.svg b/phosphor_orig/SVGs Flat/bold/repeat-bold.svg new file mode 100644 index 0000000..6980368 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/repeat-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/repeat-once-bold.svg b/phosphor_orig/SVGs Flat/bold/repeat-once-bold.svg new file mode 100644 index 0000000..8a67162 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/repeat-once-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/replit-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/replit-logo-bold.svg new file mode 100644 index 0000000..8b78fcd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/replit-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/resize-bold.svg b/phosphor_orig/SVGs Flat/bold/resize-bold.svg new file mode 100644 index 0000000..c0ebfb9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/resize-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/rewind-bold.svg b/phosphor_orig/SVGs Flat/bold/rewind-bold.svg new file mode 100644 index 0000000..e061490 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/rewind-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/rewind-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/rewind-circle-bold.svg new file mode 100644 index 0000000..c35e87c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/rewind-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/road-horizon-bold.svg b/phosphor_orig/SVGs Flat/bold/road-horizon-bold.svg new file mode 100644 index 0000000..4b4db72 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/road-horizon-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/robot-bold.svg b/phosphor_orig/SVGs Flat/bold/robot-bold.svg new file mode 100644 index 0000000..824a339 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/robot-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/rocket-bold.svg b/phosphor_orig/SVGs Flat/bold/rocket-bold.svg new file mode 100644 index 0000000..46f6e38 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/rocket-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/rocket-launch-bold.svg b/phosphor_orig/SVGs Flat/bold/rocket-launch-bold.svg new file mode 100644 index 0000000..4febf52 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/rocket-launch-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/rows-bold.svg b/phosphor_orig/SVGs Flat/bold/rows-bold.svg new file mode 100644 index 0000000..cde50d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/rows-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/rows-plus-bottom-bold.svg b/phosphor_orig/SVGs Flat/bold/rows-plus-bottom-bold.svg new file mode 100644 index 0000000..3fe1c46 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/rows-plus-bottom-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/rows-plus-top-bold.svg b/phosphor_orig/SVGs Flat/bold/rows-plus-top-bold.svg new file mode 100644 index 0000000..88d6d72 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/rows-plus-top-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/rss-bold.svg b/phosphor_orig/SVGs Flat/bold/rss-bold.svg new file mode 100644 index 0000000..81b8249 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/rss-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/rss-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/rss-simple-bold.svg new file mode 100644 index 0000000..d69e698 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/rss-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/rug-bold.svg b/phosphor_orig/SVGs Flat/bold/rug-bold.svg new file mode 100644 index 0000000..5e7e371 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/rug-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/ruler-bold.svg b/phosphor_orig/SVGs Flat/bold/ruler-bold.svg new file mode 100644 index 0000000..4ba5e91 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/ruler-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sailboat-bold.svg b/phosphor_orig/SVGs Flat/bold/sailboat-bold.svg new file mode 100644 index 0000000..e95280a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sailboat-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/scales-bold.svg b/phosphor_orig/SVGs Flat/bold/scales-bold.svg new file mode 100644 index 0000000..5920743 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/scales-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/scan-bold.svg b/phosphor_orig/SVGs Flat/bold/scan-bold.svg new file mode 100644 index 0000000..dcd7da5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/scan-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/scan-smiley-bold.svg b/phosphor_orig/SVGs Flat/bold/scan-smiley-bold.svg new file mode 100644 index 0000000..30f7eba --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/scan-smiley-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/scissors-bold.svg b/phosphor_orig/SVGs Flat/bold/scissors-bold.svg new file mode 100644 index 0000000..f8318e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/scissors-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/scooter-bold.svg b/phosphor_orig/SVGs Flat/bold/scooter-bold.svg new file mode 100644 index 0000000..13a5343 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/scooter-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/screencast-bold.svg b/phosphor_orig/SVGs Flat/bold/screencast-bold.svg new file mode 100644 index 0000000..46912e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/screencast-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/screwdriver-bold.svg b/phosphor_orig/SVGs Flat/bold/screwdriver-bold.svg new file mode 100644 index 0000000..e975c8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/screwdriver-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/scribble-bold.svg b/phosphor_orig/SVGs Flat/bold/scribble-bold.svg new file mode 100644 index 0000000..486d24b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/scribble-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/scribble-loop-bold.svg b/phosphor_orig/SVGs Flat/bold/scribble-loop-bold.svg new file mode 100644 index 0000000..2dd8580 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/scribble-loop-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/scroll-bold.svg b/phosphor_orig/SVGs Flat/bold/scroll-bold.svg new file mode 100644 index 0000000..7bb9ca1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/scroll-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/seal-bold.svg b/phosphor_orig/SVGs Flat/bold/seal-bold.svg new file mode 100644 index 0000000..7852056 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/seal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/seal-check-bold.svg b/phosphor_orig/SVGs Flat/bold/seal-check-bold.svg new file mode 100644 index 0000000..6ab4f7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/seal-check-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/seal-percent-bold.svg b/phosphor_orig/SVGs Flat/bold/seal-percent-bold.svg new file mode 100644 index 0000000..182ff46 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/seal-percent-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/seal-question-bold.svg b/phosphor_orig/SVGs Flat/bold/seal-question-bold.svg new file mode 100644 index 0000000..9557c2c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/seal-question-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/seal-warning-bold.svg b/phosphor_orig/SVGs Flat/bold/seal-warning-bold.svg new file mode 100644 index 0000000..179f4ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/seal-warning-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/seat-bold.svg b/phosphor_orig/SVGs Flat/bold/seat-bold.svg new file mode 100644 index 0000000..b6b67b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/seat-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/seatbelt-bold.svg b/phosphor_orig/SVGs Flat/bold/seatbelt-bold.svg new file mode 100644 index 0000000..598738f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/seatbelt-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/security-camera-bold.svg b/phosphor_orig/SVGs Flat/bold/security-camera-bold.svg new file mode 100644 index 0000000..5c4dd6b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/security-camera-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/selection-all-bold.svg b/phosphor_orig/SVGs Flat/bold/selection-all-bold.svg new file mode 100644 index 0000000..795b9a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/selection-all-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/selection-background-bold.svg b/phosphor_orig/SVGs Flat/bold/selection-background-bold.svg new file mode 100644 index 0000000..99d1eff --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/selection-background-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/selection-bold.svg b/phosphor_orig/SVGs Flat/bold/selection-bold.svg new file mode 100644 index 0000000..b32c8f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/selection-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/selection-foreground-bold.svg b/phosphor_orig/SVGs Flat/bold/selection-foreground-bold.svg new file mode 100644 index 0000000..a08979c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/selection-foreground-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/selection-inverse-bold.svg b/phosphor_orig/SVGs Flat/bold/selection-inverse-bold.svg new file mode 100644 index 0000000..610bcdc --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/selection-inverse-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/selection-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/selection-plus-bold.svg new file mode 100644 index 0000000..a1d8dac --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/selection-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/selection-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/selection-slash-bold.svg new file mode 100644 index 0000000..690e885 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/selection-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shapes-bold.svg b/phosphor_orig/SVGs Flat/bold/shapes-bold.svg new file mode 100644 index 0000000..fc6a025 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shapes-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/share-bold.svg b/phosphor_orig/SVGs Flat/bold/share-bold.svg new file mode 100644 index 0000000..2d3ff69 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/share-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/share-fat-bold.svg b/phosphor_orig/SVGs Flat/bold/share-fat-bold.svg new file mode 100644 index 0000000..c490486 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/share-fat-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/share-network-bold.svg b/phosphor_orig/SVGs Flat/bold/share-network-bold.svg new file mode 100644 index 0000000..b6e86d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/share-network-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shield-bold.svg b/phosphor_orig/SVGs Flat/bold/shield-bold.svg new file mode 100644 index 0000000..4bc4cd7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shield-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shield-check-bold.svg b/phosphor_orig/SVGs Flat/bold/shield-check-bold.svg new file mode 100644 index 0000000..a58afcf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shield-check-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shield-checkered-bold.svg b/phosphor_orig/SVGs Flat/bold/shield-checkered-bold.svg new file mode 100644 index 0000000..e1d0728 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shield-checkered-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shield-chevron-bold.svg b/phosphor_orig/SVGs Flat/bold/shield-chevron-bold.svg new file mode 100644 index 0000000..21eba3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shield-chevron-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shield-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/shield-plus-bold.svg new file mode 100644 index 0000000..4fcf500 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shield-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shield-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/shield-slash-bold.svg new file mode 100644 index 0000000..93dcff3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shield-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shield-star-bold.svg b/phosphor_orig/SVGs Flat/bold/shield-star-bold.svg new file mode 100644 index 0000000..21cc23a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shield-star-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shield-warning-bold.svg b/phosphor_orig/SVGs Flat/bold/shield-warning-bold.svg new file mode 100644 index 0000000..66c22c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shield-warning-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shipping-container-bold.svg b/phosphor_orig/SVGs Flat/bold/shipping-container-bold.svg new file mode 100644 index 0000000..22a46e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shipping-container-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shirt-folded-bold.svg b/phosphor_orig/SVGs Flat/bold/shirt-folded-bold.svg new file mode 100644 index 0000000..9bd896d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shirt-folded-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shooting-star-bold.svg b/phosphor_orig/SVGs Flat/bold/shooting-star-bold.svg new file mode 100644 index 0000000..8c9c7e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shooting-star-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shopping-bag-bold.svg b/phosphor_orig/SVGs Flat/bold/shopping-bag-bold.svg new file mode 100644 index 0000000..7b5a259 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shopping-bag-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shopping-bag-open-bold.svg b/phosphor_orig/SVGs Flat/bold/shopping-bag-open-bold.svg new file mode 100644 index 0000000..35aa828 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shopping-bag-open-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shopping-cart-bold.svg b/phosphor_orig/SVGs Flat/bold/shopping-cart-bold.svg new file mode 100644 index 0000000..0be65c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shopping-cart-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shopping-cart-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/shopping-cart-simple-bold.svg new file mode 100644 index 0000000..ce432a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shopping-cart-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shovel-bold.svg b/phosphor_orig/SVGs Flat/bold/shovel-bold.svg new file mode 100644 index 0000000..f54c7a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shovel-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shower-bold.svg b/phosphor_orig/SVGs Flat/bold/shower-bold.svg new file mode 100644 index 0000000..472be70 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shower-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shrimp-bold.svg b/phosphor_orig/SVGs Flat/bold/shrimp-bold.svg new file mode 100644 index 0000000..b2eece3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shrimp-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shuffle-angular-bold.svg b/phosphor_orig/SVGs Flat/bold/shuffle-angular-bold.svg new file mode 100644 index 0000000..8889c10 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shuffle-angular-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shuffle-bold.svg b/phosphor_orig/SVGs Flat/bold/shuffle-bold.svg new file mode 100644 index 0000000..3963617 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shuffle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/shuffle-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/shuffle-simple-bold.svg new file mode 100644 index 0000000..3788ebf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/shuffle-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sidebar-bold.svg b/phosphor_orig/SVGs Flat/bold/sidebar-bold.svg new file mode 100644 index 0000000..a1b2bdf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sidebar-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sidebar-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/sidebar-simple-bold.svg new file mode 100644 index 0000000..5e3d26f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sidebar-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sigma-bold.svg b/phosphor_orig/SVGs Flat/bold/sigma-bold.svg new file mode 100644 index 0000000..b17611a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sigma-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sign-in-bold.svg b/phosphor_orig/SVGs Flat/bold/sign-in-bold.svg new file mode 100644 index 0000000..3acdade --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sign-in-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sign-out-bold.svg b/phosphor_orig/SVGs Flat/bold/sign-out-bold.svg new file mode 100644 index 0000000..c380a76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sign-out-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/signature-bold.svg b/phosphor_orig/SVGs Flat/bold/signature-bold.svg new file mode 100644 index 0000000..3ed80c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/signature-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/signpost-bold.svg b/phosphor_orig/SVGs Flat/bold/signpost-bold.svg new file mode 100644 index 0000000..3d1f8af --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/signpost-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sim-card-bold.svg b/phosphor_orig/SVGs Flat/bold/sim-card-bold.svg new file mode 100644 index 0000000..8fbebe9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sim-card-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/siren-bold.svg b/phosphor_orig/SVGs Flat/bold/siren-bold.svg new file mode 100644 index 0000000..f921ad5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/siren-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sketch-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/sketch-logo-bold.svg new file mode 100644 index 0000000..fe9427c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sketch-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/skip-back-bold.svg b/phosphor_orig/SVGs Flat/bold/skip-back-bold.svg new file mode 100644 index 0000000..074953b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/skip-back-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/skip-back-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/skip-back-circle-bold.svg new file mode 100644 index 0000000..649ae79 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/skip-back-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/skip-forward-bold.svg b/phosphor_orig/SVGs Flat/bold/skip-forward-bold.svg new file mode 100644 index 0000000..ba98553 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/skip-forward-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/skip-forward-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/skip-forward-circle-bold.svg new file mode 100644 index 0000000..675dd93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/skip-forward-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/skull-bold.svg b/phosphor_orig/SVGs Flat/bold/skull-bold.svg new file mode 100644 index 0000000..dd3d0ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/skull-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/skype-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/skype-logo-bold.svg new file mode 100644 index 0000000..4a4dd3d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/skype-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/slack-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/slack-logo-bold.svg new file mode 100644 index 0000000..fb36332 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/slack-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sliders-bold.svg b/phosphor_orig/SVGs Flat/bold/sliders-bold.svg new file mode 100644 index 0000000..9b24e2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sliders-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sliders-horizontal-bold.svg b/phosphor_orig/SVGs Flat/bold/sliders-horizontal-bold.svg new file mode 100644 index 0000000..8112fd2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sliders-horizontal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/slideshow-bold.svg b/phosphor_orig/SVGs Flat/bold/slideshow-bold.svg new file mode 100644 index 0000000..d131332 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/slideshow-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/smiley-angry-bold.svg b/phosphor_orig/SVGs Flat/bold/smiley-angry-bold.svg new file mode 100644 index 0000000..abed7a8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/smiley-angry-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/smiley-blank-bold.svg b/phosphor_orig/SVGs Flat/bold/smiley-blank-bold.svg new file mode 100644 index 0000000..29da67a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/smiley-blank-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/smiley-bold.svg b/phosphor_orig/SVGs Flat/bold/smiley-bold.svg new file mode 100644 index 0000000..56c98c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/smiley-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/smiley-meh-bold.svg b/phosphor_orig/SVGs Flat/bold/smiley-meh-bold.svg new file mode 100644 index 0000000..6386851 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/smiley-meh-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/smiley-melting-bold.svg b/phosphor_orig/SVGs Flat/bold/smiley-melting-bold.svg new file mode 100644 index 0000000..5e62db4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/smiley-melting-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/smiley-nervous-bold.svg b/phosphor_orig/SVGs Flat/bold/smiley-nervous-bold.svg new file mode 100644 index 0000000..94d18f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/smiley-nervous-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/smiley-sad-bold.svg b/phosphor_orig/SVGs Flat/bold/smiley-sad-bold.svg new file mode 100644 index 0000000..f646317 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/smiley-sad-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/smiley-sticker-bold.svg b/phosphor_orig/SVGs Flat/bold/smiley-sticker-bold.svg new file mode 100644 index 0000000..734c8c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/smiley-sticker-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/smiley-wink-bold.svg b/phosphor_orig/SVGs Flat/bold/smiley-wink-bold.svg new file mode 100644 index 0000000..4ed75f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/smiley-wink-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/smiley-x-eyes-bold.svg b/phosphor_orig/SVGs Flat/bold/smiley-x-eyes-bold.svg new file mode 100644 index 0000000..353ffb2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/smiley-x-eyes-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/snapchat-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/snapchat-logo-bold.svg new file mode 100644 index 0000000..84495d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/snapchat-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sneaker-bold.svg b/phosphor_orig/SVGs Flat/bold/sneaker-bold.svg new file mode 100644 index 0000000..cf789d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sneaker-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sneaker-move-bold.svg b/phosphor_orig/SVGs Flat/bold/sneaker-move-bold.svg new file mode 100644 index 0000000..5a53645 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sneaker-move-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/snowflake-bold.svg b/phosphor_orig/SVGs Flat/bold/snowflake-bold.svg new file mode 100644 index 0000000..aaf52e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/snowflake-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/soccer-ball-bold.svg b/phosphor_orig/SVGs Flat/bold/soccer-ball-bold.svg new file mode 100644 index 0000000..5d72fb2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/soccer-ball-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sock-bold.svg b/phosphor_orig/SVGs Flat/bold/sock-bold.svg new file mode 100644 index 0000000..96e9fd2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sock-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/solar-panel-bold.svg b/phosphor_orig/SVGs Flat/bold/solar-panel-bold.svg new file mode 100644 index 0000000..e6ec1ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/solar-panel-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/solar-roof-bold.svg b/phosphor_orig/SVGs Flat/bold/solar-roof-bold.svg new file mode 100644 index 0000000..35ad2df --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/solar-roof-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sort-ascending-bold.svg b/phosphor_orig/SVGs Flat/bold/sort-ascending-bold.svg new file mode 100644 index 0000000..aac863e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sort-ascending-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sort-descending-bold.svg b/phosphor_orig/SVGs Flat/bold/sort-descending-bold.svg new file mode 100644 index 0000000..3fe64b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sort-descending-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/soundcloud-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/soundcloud-logo-bold.svg new file mode 100644 index 0000000..58a14b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/soundcloud-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/spade-bold.svg b/phosphor_orig/SVGs Flat/bold/spade-bold.svg new file mode 100644 index 0000000..4d0bbb4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/spade-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sparkle-bold.svg b/phosphor_orig/SVGs Flat/bold/sparkle-bold.svg new file mode 100644 index 0000000..b1d2985 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sparkle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/speaker-hifi-bold.svg b/phosphor_orig/SVGs Flat/bold/speaker-hifi-bold.svg new file mode 100644 index 0000000..e06e638 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/speaker-hifi-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/speaker-high-bold.svg b/phosphor_orig/SVGs Flat/bold/speaker-high-bold.svg new file mode 100644 index 0000000..ea4553c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/speaker-high-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/speaker-low-bold.svg b/phosphor_orig/SVGs Flat/bold/speaker-low-bold.svg new file mode 100644 index 0000000..2b21b02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/speaker-low-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/speaker-none-bold.svg b/phosphor_orig/SVGs Flat/bold/speaker-none-bold.svg new file mode 100644 index 0000000..c4825b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/speaker-none-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/speaker-simple-high-bold.svg b/phosphor_orig/SVGs Flat/bold/speaker-simple-high-bold.svg new file mode 100644 index 0000000..1f23b44 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/speaker-simple-high-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/speaker-simple-low-bold.svg b/phosphor_orig/SVGs Flat/bold/speaker-simple-low-bold.svg new file mode 100644 index 0000000..cddc9f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/speaker-simple-low-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/speaker-simple-none-bold.svg b/phosphor_orig/SVGs Flat/bold/speaker-simple-none-bold.svg new file mode 100644 index 0000000..7a44fd8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/speaker-simple-none-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/speaker-simple-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/speaker-simple-slash-bold.svg new file mode 100644 index 0000000..5299f07 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/speaker-simple-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/speaker-simple-x-bold.svg b/phosphor_orig/SVGs Flat/bold/speaker-simple-x-bold.svg new file mode 100644 index 0000000..c21b42f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/speaker-simple-x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/speaker-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/speaker-slash-bold.svg new file mode 100644 index 0000000..d456631 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/speaker-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/speaker-x-bold.svg b/phosphor_orig/SVGs Flat/bold/speaker-x-bold.svg new file mode 100644 index 0000000..00d4032 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/speaker-x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/speedometer-bold.svg b/phosphor_orig/SVGs Flat/bold/speedometer-bold.svg new file mode 100644 index 0000000..aedbee4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/speedometer-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sphere-bold.svg b/phosphor_orig/SVGs Flat/bold/sphere-bold.svg new file mode 100644 index 0000000..7d4767b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sphere-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/spinner-ball-bold.svg b/phosphor_orig/SVGs Flat/bold/spinner-ball-bold.svg new file mode 100644 index 0000000..5ba7214 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/spinner-ball-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/spinner-bold.svg b/phosphor_orig/SVGs Flat/bold/spinner-bold.svg new file mode 100644 index 0000000..0e64942 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/spinner-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/spinner-gap-bold.svg b/phosphor_orig/SVGs Flat/bold/spinner-gap-bold.svg new file mode 100644 index 0000000..802cf4c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/spinner-gap-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/spiral-bold.svg b/phosphor_orig/SVGs Flat/bold/spiral-bold.svg new file mode 100644 index 0000000..97884ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/spiral-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/split-horizontal-bold.svg b/phosphor_orig/SVGs Flat/bold/split-horizontal-bold.svg new file mode 100644 index 0000000..fc87948 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/split-horizontal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/split-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/split-vertical-bold.svg new file mode 100644 index 0000000..2146e5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/split-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/spotify-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/spotify-logo-bold.svg new file mode 100644 index 0000000..a21ddce --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/spotify-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/spray-bottle-bold.svg b/phosphor_orig/SVGs Flat/bold/spray-bottle-bold.svg new file mode 100644 index 0000000..e095a0c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/spray-bottle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/square-bold.svg b/phosphor_orig/SVGs Flat/bold/square-bold.svg new file mode 100644 index 0000000..d91dba9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/square-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/square-half-bold.svg b/phosphor_orig/SVGs Flat/bold/square-half-bold.svg new file mode 100644 index 0000000..ea19f2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/square-half-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/square-half-bottom-bold.svg b/phosphor_orig/SVGs Flat/bold/square-half-bottom-bold.svg new file mode 100644 index 0000000..b5a3c18 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/square-half-bottom-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/square-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/square-logo-bold.svg new file mode 100644 index 0000000..7c5a90f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/square-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/square-split-horizontal-bold.svg b/phosphor_orig/SVGs Flat/bold/square-split-horizontal-bold.svg new file mode 100644 index 0000000..d232dec --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/square-split-horizontal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/square-split-vertical-bold.svg b/phosphor_orig/SVGs Flat/bold/square-split-vertical-bold.svg new file mode 100644 index 0000000..526a53d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/square-split-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/squares-four-bold.svg b/phosphor_orig/SVGs Flat/bold/squares-four-bold.svg new file mode 100644 index 0000000..a7c8030 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/squares-four-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/stack-bold.svg b/phosphor_orig/SVGs Flat/bold/stack-bold.svg new file mode 100644 index 0000000..fe54e28 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/stack-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/stack-minus-bold.svg b/phosphor_orig/SVGs Flat/bold/stack-minus-bold.svg new file mode 100644 index 0000000..59a950f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/stack-minus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/stack-overflow-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/stack-overflow-logo-bold.svg new file mode 100644 index 0000000..af66461 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/stack-overflow-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/stack-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/stack-plus-bold.svg new file mode 100644 index 0000000..8ca7712 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/stack-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/stack-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/stack-simple-bold.svg new file mode 100644 index 0000000..bf9c67e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/stack-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/stairs-bold.svg b/phosphor_orig/SVGs Flat/bold/stairs-bold.svg new file mode 100644 index 0000000..6e99f5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/stairs-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/stamp-bold.svg b/phosphor_orig/SVGs Flat/bold/stamp-bold.svg new file mode 100644 index 0000000..b3ba08f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/stamp-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/standard-definition-bold.svg b/phosphor_orig/SVGs Flat/bold/standard-definition-bold.svg new file mode 100644 index 0000000..b72d695 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/standard-definition-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/star-and-crescent-bold.svg b/phosphor_orig/SVGs Flat/bold/star-and-crescent-bold.svg new file mode 100644 index 0000000..1ef34d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/star-and-crescent-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/star-bold.svg b/phosphor_orig/SVGs Flat/bold/star-bold.svg new file mode 100644 index 0000000..cd51f12 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/star-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/star-four-bold.svg b/phosphor_orig/SVGs Flat/bold/star-four-bold.svg new file mode 100644 index 0000000..2925982 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/star-four-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/star-half-bold.svg b/phosphor_orig/SVGs Flat/bold/star-half-bold.svg new file mode 100644 index 0000000..89b7390 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/star-half-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/star-of-david-bold.svg b/phosphor_orig/SVGs Flat/bold/star-of-david-bold.svg new file mode 100644 index 0000000..19dd4ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/star-of-david-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/steam-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/steam-logo-bold.svg new file mode 100644 index 0000000..33c9b77 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/steam-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/steering-wheel-bold.svg b/phosphor_orig/SVGs Flat/bold/steering-wheel-bold.svg new file mode 100644 index 0000000..597a6b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/steering-wheel-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/steps-bold.svg b/phosphor_orig/SVGs Flat/bold/steps-bold.svg new file mode 100644 index 0000000..6767fdb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/steps-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/stethoscope-bold.svg b/phosphor_orig/SVGs Flat/bold/stethoscope-bold.svg new file mode 100644 index 0000000..b658f93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/stethoscope-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sticker-bold.svg b/phosphor_orig/SVGs Flat/bold/sticker-bold.svg new file mode 100644 index 0000000..3a37be1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sticker-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/stool-bold.svg b/phosphor_orig/SVGs Flat/bold/stool-bold.svg new file mode 100644 index 0000000..591030a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/stool-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/stop-bold.svg b/phosphor_orig/SVGs Flat/bold/stop-bold.svg new file mode 100644 index 0000000..4120dee --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/stop-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/stop-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/stop-circle-bold.svg new file mode 100644 index 0000000..f35cba3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/stop-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/storefront-bold.svg b/phosphor_orig/SVGs Flat/bold/storefront-bold.svg new file mode 100644 index 0000000..5e38bc0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/storefront-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/strategy-bold.svg b/phosphor_orig/SVGs Flat/bold/strategy-bold.svg new file mode 100644 index 0000000..c8e8fc7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/strategy-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/stripe-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/stripe-logo-bold.svg new file mode 100644 index 0000000..53f2473 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/stripe-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/student-bold.svg b/phosphor_orig/SVGs Flat/bold/student-bold.svg new file mode 100644 index 0000000..62f3cce --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/student-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/subset-of-bold.svg b/phosphor_orig/SVGs Flat/bold/subset-of-bold.svg new file mode 100644 index 0000000..2347ffa --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/subset-of-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/subset-proper-of-bold.svg b/phosphor_orig/SVGs Flat/bold/subset-proper-of-bold.svg new file mode 100644 index 0000000..0f55fc4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/subset-proper-of-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/subtitles-bold.svg b/phosphor_orig/SVGs Flat/bold/subtitles-bold.svg new file mode 100644 index 0000000..2d953cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/subtitles-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/subtitles-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/subtitles-slash-bold.svg new file mode 100644 index 0000000..82af92f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/subtitles-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/subtract-bold.svg b/phosphor_orig/SVGs Flat/bold/subtract-bold.svg new file mode 100644 index 0000000..a9d378c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/subtract-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/subtract-square-bold.svg b/phosphor_orig/SVGs Flat/bold/subtract-square-bold.svg new file mode 100644 index 0000000..4c2a553 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/subtract-square-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/subway-bold.svg b/phosphor_orig/SVGs Flat/bold/subway-bold.svg new file mode 100644 index 0000000..a2bab53 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/subway-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/suitcase-bold.svg b/phosphor_orig/SVGs Flat/bold/suitcase-bold.svg new file mode 100644 index 0000000..ae77969 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/suitcase-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/suitcase-rolling-bold.svg b/phosphor_orig/SVGs Flat/bold/suitcase-rolling-bold.svg new file mode 100644 index 0000000..a2ce8b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/suitcase-rolling-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/suitcase-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/suitcase-simple-bold.svg new file mode 100644 index 0000000..dc44085 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/suitcase-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sun-bold.svg b/phosphor_orig/SVGs Flat/bold/sun-bold.svg new file mode 100644 index 0000000..8f85986 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sun-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sun-dim-bold.svg b/phosphor_orig/SVGs Flat/bold/sun-dim-bold.svg new file mode 100644 index 0000000..c80caa9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sun-dim-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sun-horizon-bold.svg b/phosphor_orig/SVGs Flat/bold/sun-horizon-bold.svg new file mode 100644 index 0000000..3b60260 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sun-horizon-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sunglasses-bold.svg b/phosphor_orig/SVGs Flat/bold/sunglasses-bold.svg new file mode 100644 index 0000000..d3c78e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sunglasses-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/superset-of-bold.svg b/phosphor_orig/SVGs Flat/bold/superset-of-bold.svg new file mode 100644 index 0000000..b7da01a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/superset-of-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/superset-proper-of-bold.svg b/phosphor_orig/SVGs Flat/bold/superset-proper-of-bold.svg new file mode 100644 index 0000000..c5643e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/superset-proper-of-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/swap-bold.svg b/phosphor_orig/SVGs Flat/bold/swap-bold.svg new file mode 100644 index 0000000..0c018b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/swap-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/swatches-bold.svg b/phosphor_orig/SVGs Flat/bold/swatches-bold.svg new file mode 100644 index 0000000..4c422f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/swatches-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/swimming-pool-bold.svg b/phosphor_orig/SVGs Flat/bold/swimming-pool-bold.svg new file mode 100644 index 0000000..7706ae9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/swimming-pool-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/sword-bold.svg b/phosphor_orig/SVGs Flat/bold/sword-bold.svg new file mode 100644 index 0000000..05c67cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/sword-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/synagogue-bold.svg b/phosphor_orig/SVGs Flat/bold/synagogue-bold.svg new file mode 100644 index 0000000..bd9575f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/synagogue-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/syringe-bold.svg b/phosphor_orig/SVGs Flat/bold/syringe-bold.svg new file mode 100644 index 0000000..473041a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/syringe-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/t-shirt-bold.svg b/phosphor_orig/SVGs Flat/bold/t-shirt-bold.svg new file mode 100644 index 0000000..78ff93e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/t-shirt-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/table-bold.svg b/phosphor_orig/SVGs Flat/bold/table-bold.svg new file mode 100644 index 0000000..34de58e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/table-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tabs-bold.svg b/phosphor_orig/SVGs Flat/bold/tabs-bold.svg new file mode 100644 index 0000000..7cdb50f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tabs-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tag-bold.svg b/phosphor_orig/SVGs Flat/bold/tag-bold.svg new file mode 100644 index 0000000..4321b89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tag-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tag-chevron-bold.svg b/phosphor_orig/SVGs Flat/bold/tag-chevron-bold.svg new file mode 100644 index 0000000..7f964e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tag-chevron-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tag-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/tag-simple-bold.svg new file mode 100644 index 0000000..16e64d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tag-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/target-bold.svg b/phosphor_orig/SVGs Flat/bold/target-bold.svg new file mode 100644 index 0000000..f2c18b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/target-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/taxi-bold.svg b/phosphor_orig/SVGs Flat/bold/taxi-bold.svg new file mode 100644 index 0000000..e0b1972 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/taxi-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tea-bag-bold.svg b/phosphor_orig/SVGs Flat/bold/tea-bag-bold.svg new file mode 100644 index 0000000..0bdf01f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tea-bag-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/telegram-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/telegram-logo-bold.svg new file mode 100644 index 0000000..4ea132b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/telegram-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/television-bold.svg b/phosphor_orig/SVGs Flat/bold/television-bold.svg new file mode 100644 index 0000000..a9fac1b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/television-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/television-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/television-simple-bold.svg new file mode 100644 index 0000000..bcb176f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/television-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tennis-ball-bold.svg b/phosphor_orig/SVGs Flat/bold/tennis-ball-bold.svg new file mode 100644 index 0000000..471e48f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tennis-ball-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tent-bold.svg b/phosphor_orig/SVGs Flat/bold/tent-bold.svg new file mode 100644 index 0000000..2467a27 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tent-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/terminal-bold.svg b/phosphor_orig/SVGs Flat/bold/terminal-bold.svg new file mode 100644 index 0000000..8b8ab8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/terminal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/terminal-window-bold.svg b/phosphor_orig/SVGs Flat/bold/terminal-window-bold.svg new file mode 100644 index 0000000..5309a41 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/terminal-window-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/test-tube-bold.svg b/phosphor_orig/SVGs Flat/bold/test-tube-bold.svg new file mode 100644 index 0000000..bcc38e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/test-tube-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-a-underline-bold.svg b/phosphor_orig/SVGs Flat/bold/text-a-underline-bold.svg new file mode 100644 index 0000000..2715cc9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-a-underline-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-aa-bold.svg b/phosphor_orig/SVGs Flat/bold/text-aa-bold.svg new file mode 100644 index 0000000..58a0c27 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-aa-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-align-center-bold.svg b/phosphor_orig/SVGs Flat/bold/text-align-center-bold.svg new file mode 100644 index 0000000..864bd71 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-align-center-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-align-justify-bold.svg b/phosphor_orig/SVGs Flat/bold/text-align-justify-bold.svg new file mode 100644 index 0000000..0ee507b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-align-justify-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-align-left-bold.svg b/phosphor_orig/SVGs Flat/bold/text-align-left-bold.svg new file mode 100644 index 0000000..ed6f3c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-align-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-align-right-bold.svg b/phosphor_orig/SVGs Flat/bold/text-align-right-bold.svg new file mode 100644 index 0000000..c9c21af --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-align-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-b-bold.svg b/phosphor_orig/SVGs Flat/bold/text-b-bold.svg new file mode 100644 index 0000000..a3f24b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-b-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-columns-bold.svg b/phosphor_orig/SVGs Flat/bold/text-columns-bold.svg new file mode 100644 index 0000000..db34c2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-columns-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-h-bold.svg b/phosphor_orig/SVGs Flat/bold/text-h-bold.svg new file mode 100644 index 0000000..a142ddf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-h-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-h-five-bold.svg b/phosphor_orig/SVGs Flat/bold/text-h-five-bold.svg new file mode 100644 index 0000000..4760ef2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-h-five-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-h-four-bold.svg b/phosphor_orig/SVGs Flat/bold/text-h-four-bold.svg new file mode 100644 index 0000000..f666b09 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-h-four-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-h-one-bold.svg b/phosphor_orig/SVGs Flat/bold/text-h-one-bold.svg new file mode 100644 index 0000000..12d708f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-h-one-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-h-six-bold.svg b/phosphor_orig/SVGs Flat/bold/text-h-six-bold.svg new file mode 100644 index 0000000..c63d8cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-h-six-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-h-three-bold.svg b/phosphor_orig/SVGs Flat/bold/text-h-three-bold.svg new file mode 100644 index 0000000..4c9b6dd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-h-three-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-h-two-bold.svg b/phosphor_orig/SVGs Flat/bold/text-h-two-bold.svg new file mode 100644 index 0000000..8159a88 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-h-two-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-indent-bold.svg b/phosphor_orig/SVGs Flat/bold/text-indent-bold.svg new file mode 100644 index 0000000..918cfd8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-indent-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-italic-bold.svg b/phosphor_orig/SVGs Flat/bold/text-italic-bold.svg new file mode 100644 index 0000000..a98cbed --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-italic-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-outdent-bold.svg b/phosphor_orig/SVGs Flat/bold/text-outdent-bold.svg new file mode 100644 index 0000000..c59ed5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-outdent-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-strikethrough-bold.svg b/phosphor_orig/SVGs Flat/bold/text-strikethrough-bold.svg new file mode 100644 index 0000000..ed9beee --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-strikethrough-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-subscript-bold.svg b/phosphor_orig/SVGs Flat/bold/text-subscript-bold.svg new file mode 100644 index 0000000..97a7548 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-subscript-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-superscript-bold.svg b/phosphor_orig/SVGs Flat/bold/text-superscript-bold.svg new file mode 100644 index 0000000..b4a1673 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-superscript-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-t-bold.svg b/phosphor_orig/SVGs Flat/bold/text-t-bold.svg new file mode 100644 index 0000000..ede8f7a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-t-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-t-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/text-t-slash-bold.svg new file mode 100644 index 0000000..9ddf00f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-t-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/text-underline-bold.svg b/phosphor_orig/SVGs Flat/bold/text-underline-bold.svg new file mode 100644 index 0000000..d93184c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/text-underline-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/textbox-bold.svg b/phosphor_orig/SVGs Flat/bold/textbox-bold.svg new file mode 100644 index 0000000..f038799 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/textbox-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/thermometer-bold.svg b/phosphor_orig/SVGs Flat/bold/thermometer-bold.svg new file mode 100644 index 0000000..428b617 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/thermometer-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/thermometer-cold-bold.svg b/phosphor_orig/SVGs Flat/bold/thermometer-cold-bold.svg new file mode 100644 index 0000000..f78b141 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/thermometer-cold-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/thermometer-hot-bold.svg b/phosphor_orig/SVGs Flat/bold/thermometer-hot-bold.svg new file mode 100644 index 0000000..09f9f81 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/thermometer-hot-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/thermometer-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/thermometer-simple-bold.svg new file mode 100644 index 0000000..21d9777 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/thermometer-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/threads-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/threads-logo-bold.svg new file mode 100644 index 0000000..1adc8fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/threads-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/three-d-bold.svg b/phosphor_orig/SVGs Flat/bold/three-d-bold.svg new file mode 100644 index 0000000..0d877c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/three-d-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/thumbs-down-bold.svg b/phosphor_orig/SVGs Flat/bold/thumbs-down-bold.svg new file mode 100644 index 0000000..2046079 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/thumbs-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/thumbs-up-bold.svg b/phosphor_orig/SVGs Flat/bold/thumbs-up-bold.svg new file mode 100644 index 0000000..dba592a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/thumbs-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/ticket-bold.svg b/phosphor_orig/SVGs Flat/bold/ticket-bold.svg new file mode 100644 index 0000000..da203a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/ticket-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tidal-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/tidal-logo-bold.svg new file mode 100644 index 0000000..60d1542 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tidal-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tiktok-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/tiktok-logo-bold.svg new file mode 100644 index 0000000..6da3f6d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tiktok-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tilde-bold.svg b/phosphor_orig/SVGs Flat/bold/tilde-bold.svg new file mode 100644 index 0000000..7c050d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tilde-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/timer-bold.svg b/phosphor_orig/SVGs Flat/bold/timer-bold.svg new file mode 100644 index 0000000..886354d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/timer-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tip-jar-bold.svg b/phosphor_orig/SVGs Flat/bold/tip-jar-bold.svg new file mode 100644 index 0000000..1848c06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tip-jar-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tipi-bold.svg b/phosphor_orig/SVGs Flat/bold/tipi-bold.svg new file mode 100644 index 0000000..a6d8de5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tipi-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tire-bold.svg b/phosphor_orig/SVGs Flat/bold/tire-bold.svg new file mode 100644 index 0000000..4c2e658 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tire-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/toggle-left-bold.svg b/phosphor_orig/SVGs Flat/bold/toggle-left-bold.svg new file mode 100644 index 0000000..8640686 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/toggle-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/toggle-right-bold.svg b/phosphor_orig/SVGs Flat/bold/toggle-right-bold.svg new file mode 100644 index 0000000..7384f54 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/toggle-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/toilet-bold.svg b/phosphor_orig/SVGs Flat/bold/toilet-bold.svg new file mode 100644 index 0000000..67b2ea5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/toilet-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/toilet-paper-bold.svg b/phosphor_orig/SVGs Flat/bold/toilet-paper-bold.svg new file mode 100644 index 0000000..fcc00ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/toilet-paper-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/toolbox-bold.svg b/phosphor_orig/SVGs Flat/bold/toolbox-bold.svg new file mode 100644 index 0000000..dad1db9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/toolbox-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tooth-bold.svg b/phosphor_orig/SVGs Flat/bold/tooth-bold.svg new file mode 100644 index 0000000..d96047d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tooth-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tornado-bold.svg b/phosphor_orig/SVGs Flat/bold/tornado-bold.svg new file mode 100644 index 0000000..e646ffa --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tornado-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tote-bold.svg b/phosphor_orig/SVGs Flat/bold/tote-bold.svg new file mode 100644 index 0000000..7230113 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tote-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tote-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/tote-simple-bold.svg new file mode 100644 index 0000000..185664e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tote-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/towel-bold.svg b/phosphor_orig/SVGs Flat/bold/towel-bold.svg new file mode 100644 index 0000000..b683595 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/towel-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tractor-bold.svg b/phosphor_orig/SVGs Flat/bold/tractor-bold.svg new file mode 100644 index 0000000..f0a610b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tractor-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/trademark-bold.svg b/phosphor_orig/SVGs Flat/bold/trademark-bold.svg new file mode 100644 index 0000000..76be299 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/trademark-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/trademark-registered-bold.svg b/phosphor_orig/SVGs Flat/bold/trademark-registered-bold.svg new file mode 100644 index 0000000..aeb050f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/trademark-registered-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/traffic-cone-bold.svg b/phosphor_orig/SVGs Flat/bold/traffic-cone-bold.svg new file mode 100644 index 0000000..10a4b6e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/traffic-cone-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/traffic-sign-bold.svg b/phosphor_orig/SVGs Flat/bold/traffic-sign-bold.svg new file mode 100644 index 0000000..9d0b0f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/traffic-sign-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/traffic-signal-bold.svg b/phosphor_orig/SVGs Flat/bold/traffic-signal-bold.svg new file mode 100644 index 0000000..1b86677 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/traffic-signal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/train-bold.svg b/phosphor_orig/SVGs Flat/bold/train-bold.svg new file mode 100644 index 0000000..088557d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/train-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/train-regional-bold.svg b/phosphor_orig/SVGs Flat/bold/train-regional-bold.svg new file mode 100644 index 0000000..069fe69 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/train-regional-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/train-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/train-simple-bold.svg new file mode 100644 index 0000000..1deffce --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/train-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tram-bold.svg b/phosphor_orig/SVGs Flat/bold/tram-bold.svg new file mode 100644 index 0000000..cc535f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tram-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/translate-bold.svg b/phosphor_orig/SVGs Flat/bold/translate-bold.svg new file mode 100644 index 0000000..2628800 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/translate-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/trash-bold.svg b/phosphor_orig/SVGs Flat/bold/trash-bold.svg new file mode 100644 index 0000000..f06f485 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/trash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/trash-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/trash-simple-bold.svg new file mode 100644 index 0000000..7dc354f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/trash-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tray-arrow-down-bold.svg b/phosphor_orig/SVGs Flat/bold/tray-arrow-down-bold.svg new file mode 100644 index 0000000..e635405 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tray-arrow-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tray-arrow-up-bold.svg b/phosphor_orig/SVGs Flat/bold/tray-arrow-up-bold.svg new file mode 100644 index 0000000..d4d2be0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tray-arrow-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tray-bold.svg b/phosphor_orig/SVGs Flat/bold/tray-bold.svg new file mode 100644 index 0000000..1f544bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tray-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/treasure-chest-bold.svg b/phosphor_orig/SVGs Flat/bold/treasure-chest-bold.svg new file mode 100644 index 0000000..8d5637a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/treasure-chest-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tree-bold.svg b/phosphor_orig/SVGs Flat/bold/tree-bold.svg new file mode 100644 index 0000000..b0d645b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tree-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tree-evergreen-bold.svg b/phosphor_orig/SVGs Flat/bold/tree-evergreen-bold.svg new file mode 100644 index 0000000..ec93726 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tree-evergreen-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tree-palm-bold.svg b/phosphor_orig/SVGs Flat/bold/tree-palm-bold.svg new file mode 100644 index 0000000..ee7a61c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tree-palm-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tree-structure-bold.svg b/phosphor_orig/SVGs Flat/bold/tree-structure-bold.svg new file mode 100644 index 0000000..2958c0c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tree-structure-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tree-view-bold.svg b/phosphor_orig/SVGs Flat/bold/tree-view-bold.svg new file mode 100644 index 0000000..75139bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tree-view-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/trend-down-bold.svg b/phosphor_orig/SVGs Flat/bold/trend-down-bold.svg new file mode 100644 index 0000000..be02fdd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/trend-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/trend-up-bold.svg b/phosphor_orig/SVGs Flat/bold/trend-up-bold.svg new file mode 100644 index 0000000..bff950b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/trend-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/triangle-bold.svg b/phosphor_orig/SVGs Flat/bold/triangle-bold.svg new file mode 100644 index 0000000..b36ac83 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/triangle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/triangle-dashed-bold.svg b/phosphor_orig/SVGs Flat/bold/triangle-dashed-bold.svg new file mode 100644 index 0000000..16b77d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/triangle-dashed-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/trolley-bold.svg b/phosphor_orig/SVGs Flat/bold/trolley-bold.svg new file mode 100644 index 0000000..e3b90c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/trolley-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/trolley-suitcase-bold.svg b/phosphor_orig/SVGs Flat/bold/trolley-suitcase-bold.svg new file mode 100644 index 0000000..82d1b32 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/trolley-suitcase-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/trophy-bold.svg b/phosphor_orig/SVGs Flat/bold/trophy-bold.svg new file mode 100644 index 0000000..3a14f76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/trophy-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/truck-bold.svg b/phosphor_orig/SVGs Flat/bold/truck-bold.svg new file mode 100644 index 0000000..c943f5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/truck-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/truck-trailer-bold.svg b/phosphor_orig/SVGs Flat/bold/truck-trailer-bold.svg new file mode 100644 index 0000000..0379143 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/truck-trailer-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/tumblr-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/tumblr-logo-bold.svg new file mode 100644 index 0000000..15e9eb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/tumblr-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/twitch-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/twitch-logo-bold.svg new file mode 100644 index 0000000..bf4f9f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/twitch-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/twitter-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/twitter-logo-bold.svg new file mode 100644 index 0000000..ad4f90d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/twitter-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/umbrella-bold.svg b/phosphor_orig/SVGs Flat/bold/umbrella-bold.svg new file mode 100644 index 0000000..c342135 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/umbrella-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/umbrella-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/umbrella-simple-bold.svg new file mode 100644 index 0000000..40b358b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/umbrella-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/union-bold.svg b/phosphor_orig/SVGs Flat/bold/union-bold.svg new file mode 100644 index 0000000..40b0fb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/union-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/unite-bold.svg b/phosphor_orig/SVGs Flat/bold/unite-bold.svg new file mode 100644 index 0000000..b5689f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/unite-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/unite-square-bold.svg b/phosphor_orig/SVGs Flat/bold/unite-square-bold.svg new file mode 100644 index 0000000..72767a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/unite-square-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/upload-bold.svg b/phosphor_orig/SVGs Flat/bold/upload-bold.svg new file mode 100644 index 0000000..76c7fef --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/upload-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/upload-simple-bold.svg b/phosphor_orig/SVGs Flat/bold/upload-simple-bold.svg new file mode 100644 index 0000000..33a9300 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/upload-simple-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/usb-bold.svg b/phosphor_orig/SVGs Flat/bold/usb-bold.svg new file mode 100644 index 0000000..f1b43ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/usb-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-bold.svg b/phosphor_orig/SVGs Flat/bold/user-bold.svg new file mode 100644 index 0000000..0adad1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-check-bold.svg b/phosphor_orig/SVGs Flat/bold/user-check-bold.svg new file mode 100644 index 0000000..f6b3c8e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-check-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/user-circle-bold.svg new file mode 100644 index 0000000..533d25a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-circle-check-bold.svg b/phosphor_orig/SVGs Flat/bold/user-circle-check-bold.svg new file mode 100644 index 0000000..572b9c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-circle-check-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-circle-dashed-bold.svg b/phosphor_orig/SVGs Flat/bold/user-circle-dashed-bold.svg new file mode 100644 index 0000000..21615e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-circle-dashed-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-circle-gear-bold.svg b/phosphor_orig/SVGs Flat/bold/user-circle-gear-bold.svg new file mode 100644 index 0000000..3dc3d1f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-circle-gear-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-circle-minus-bold.svg b/phosphor_orig/SVGs Flat/bold/user-circle-minus-bold.svg new file mode 100644 index 0000000..029cba5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-circle-minus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-circle-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/user-circle-plus-bold.svg new file mode 100644 index 0000000..dce494e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-circle-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-focus-bold.svg b/phosphor_orig/SVGs Flat/bold/user-focus-bold.svg new file mode 100644 index 0000000..b2dfdd0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-focus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-gear-bold.svg b/phosphor_orig/SVGs Flat/bold/user-gear-bold.svg new file mode 100644 index 0000000..c4a5da7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-gear-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-list-bold.svg b/phosphor_orig/SVGs Flat/bold/user-list-bold.svg new file mode 100644 index 0000000..74060cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-list-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-minus-bold.svg b/phosphor_orig/SVGs Flat/bold/user-minus-bold.svg new file mode 100644 index 0000000..152f19b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-minus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-plus-bold.svg b/phosphor_orig/SVGs Flat/bold/user-plus-bold.svg new file mode 100644 index 0000000..2058178 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-plus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-rectangle-bold.svg b/phosphor_orig/SVGs Flat/bold/user-rectangle-bold.svg new file mode 100644 index 0000000..94248f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-rectangle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-sound-bold.svg b/phosphor_orig/SVGs Flat/bold/user-sound-bold.svg new file mode 100644 index 0000000..a745ecb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-sound-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-square-bold.svg b/phosphor_orig/SVGs Flat/bold/user-square-bold.svg new file mode 100644 index 0000000..281eda1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-square-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/user-switch-bold.svg b/phosphor_orig/SVGs Flat/bold/user-switch-bold.svg new file mode 100644 index 0000000..5cf05bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/user-switch-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/users-bold.svg b/phosphor_orig/SVGs Flat/bold/users-bold.svg new file mode 100644 index 0000000..f45e58f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/users-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/users-four-bold.svg b/phosphor_orig/SVGs Flat/bold/users-four-bold.svg new file mode 100644 index 0000000..02ffb45 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/users-four-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/users-three-bold.svg b/phosphor_orig/SVGs Flat/bold/users-three-bold.svg new file mode 100644 index 0000000..6c64813 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/users-three-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/van-bold.svg b/phosphor_orig/SVGs Flat/bold/van-bold.svg new file mode 100644 index 0000000..bc4fbf3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/van-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/vault-bold.svg b/phosphor_orig/SVGs Flat/bold/vault-bold.svg new file mode 100644 index 0000000..25d7eca --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/vault-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/vector-three-bold.svg b/phosphor_orig/SVGs Flat/bold/vector-three-bold.svg new file mode 100644 index 0000000..24e8c67 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/vector-three-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/vector-two-bold.svg b/phosphor_orig/SVGs Flat/bold/vector-two-bold.svg new file mode 100644 index 0000000..1969565 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/vector-two-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/vibrate-bold.svg b/phosphor_orig/SVGs Flat/bold/vibrate-bold.svg new file mode 100644 index 0000000..20df2ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/vibrate-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/video-bold.svg b/phosphor_orig/SVGs Flat/bold/video-bold.svg new file mode 100644 index 0000000..2ac26e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/video-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/video-camera-bold.svg b/phosphor_orig/SVGs Flat/bold/video-camera-bold.svg new file mode 100644 index 0000000..af54abf --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/video-camera-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/video-camera-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/video-camera-slash-bold.svg new file mode 100644 index 0000000..d1add3f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/video-camera-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/video-conference-bold.svg b/phosphor_orig/SVGs Flat/bold/video-conference-bold.svg new file mode 100644 index 0000000..3aaaf89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/video-conference-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/vignette-bold.svg b/phosphor_orig/SVGs Flat/bold/vignette-bold.svg new file mode 100644 index 0000000..99534fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/vignette-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/vinyl-record-bold.svg b/phosphor_orig/SVGs Flat/bold/vinyl-record-bold.svg new file mode 100644 index 0000000..ea316f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/vinyl-record-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/virtual-reality-bold.svg b/phosphor_orig/SVGs Flat/bold/virtual-reality-bold.svg new file mode 100644 index 0000000..86a35be --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/virtual-reality-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/virus-bold.svg b/phosphor_orig/SVGs Flat/bold/virus-bold.svg new file mode 100644 index 0000000..6a252d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/virus-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/visor-bold.svg b/phosphor_orig/SVGs Flat/bold/visor-bold.svg new file mode 100644 index 0000000..a8f15f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/visor-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/voicemail-bold.svg b/phosphor_orig/SVGs Flat/bold/voicemail-bold.svg new file mode 100644 index 0000000..36bd0bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/voicemail-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/volleyball-bold.svg b/phosphor_orig/SVGs Flat/bold/volleyball-bold.svg new file mode 100644 index 0000000..6bd1798 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/volleyball-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wall-bold.svg b/phosphor_orig/SVGs Flat/bold/wall-bold.svg new file mode 100644 index 0000000..d56007e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wall-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wallet-bold.svg b/phosphor_orig/SVGs Flat/bold/wallet-bold.svg new file mode 100644 index 0000000..67d3d7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wallet-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/warehouse-bold.svg b/phosphor_orig/SVGs Flat/bold/warehouse-bold.svg new file mode 100644 index 0000000..7af0f02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/warehouse-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/warning-bold.svg b/phosphor_orig/SVGs Flat/bold/warning-bold.svg new file mode 100644 index 0000000..e44480f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/warning-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/warning-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/warning-circle-bold.svg new file mode 100644 index 0000000..cc1413d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/warning-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/warning-diamond-bold.svg b/phosphor_orig/SVGs Flat/bold/warning-diamond-bold.svg new file mode 100644 index 0000000..d119786 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/warning-diamond-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/warning-octagon-bold.svg b/phosphor_orig/SVGs Flat/bold/warning-octagon-bold.svg new file mode 100644 index 0000000..e05f9d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/warning-octagon-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/washing-machine-bold.svg b/phosphor_orig/SVGs Flat/bold/washing-machine-bold.svg new file mode 100644 index 0000000..7d9b1ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/washing-machine-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/watch-bold.svg b/phosphor_orig/SVGs Flat/bold/watch-bold.svg new file mode 100644 index 0000000..09f364d --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/watch-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wave-sawtooth-bold.svg b/phosphor_orig/SVGs Flat/bold/wave-sawtooth-bold.svg new file mode 100644 index 0000000..66da9f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wave-sawtooth-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wave-sine-bold.svg b/phosphor_orig/SVGs Flat/bold/wave-sine-bold.svg new file mode 100644 index 0000000..6af0ae2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wave-sine-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wave-square-bold.svg b/phosphor_orig/SVGs Flat/bold/wave-square-bold.svg new file mode 100644 index 0000000..e45548e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wave-square-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wave-triangle-bold.svg b/phosphor_orig/SVGs Flat/bold/wave-triangle-bold.svg new file mode 100644 index 0000000..0deec0b --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wave-triangle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/waveform-bold.svg b/phosphor_orig/SVGs Flat/bold/waveform-bold.svg new file mode 100644 index 0000000..aa4077f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/waveform-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/waveform-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/waveform-slash-bold.svg new file mode 100644 index 0000000..5cdda71 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/waveform-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/waves-bold.svg b/phosphor_orig/SVGs Flat/bold/waves-bold.svg new file mode 100644 index 0000000..a6e963e --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/waves-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/webcam-bold.svg b/phosphor_orig/SVGs Flat/bold/webcam-bold.svg new file mode 100644 index 0000000..a99d7b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/webcam-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/webcam-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/webcam-slash-bold.svg new file mode 100644 index 0000000..ce9db0c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/webcam-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/webhooks-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/webhooks-logo-bold.svg new file mode 100644 index 0000000..2ca160f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/webhooks-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wechat-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/wechat-logo-bold.svg new file mode 100644 index 0000000..f0bce8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wechat-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/whatsapp-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/whatsapp-logo-bold.svg new file mode 100644 index 0000000..7361b7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/whatsapp-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wheelchair-bold.svg b/phosphor_orig/SVGs Flat/bold/wheelchair-bold.svg new file mode 100644 index 0000000..802de2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wheelchair-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wheelchair-motion-bold.svg b/phosphor_orig/SVGs Flat/bold/wheelchair-motion-bold.svg new file mode 100644 index 0000000..e81ca04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wheelchair-motion-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wifi-high-bold.svg b/phosphor_orig/SVGs Flat/bold/wifi-high-bold.svg new file mode 100644 index 0000000..81ccaf5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wifi-high-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wifi-low-bold.svg b/phosphor_orig/SVGs Flat/bold/wifi-low-bold.svg new file mode 100644 index 0000000..f08cedd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wifi-low-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wifi-medium-bold.svg b/phosphor_orig/SVGs Flat/bold/wifi-medium-bold.svg new file mode 100644 index 0000000..e100e24 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wifi-medium-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wifi-none-bold.svg b/phosphor_orig/SVGs Flat/bold/wifi-none-bold.svg new file mode 100644 index 0000000..0c6dcf0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wifi-none-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wifi-slash-bold.svg b/phosphor_orig/SVGs Flat/bold/wifi-slash-bold.svg new file mode 100644 index 0000000..04d44dd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wifi-slash-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wifi-x-bold.svg b/phosphor_orig/SVGs Flat/bold/wifi-x-bold.svg new file mode 100644 index 0000000..4749141 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wifi-x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wind-bold.svg b/phosphor_orig/SVGs Flat/bold/wind-bold.svg new file mode 100644 index 0000000..4177608 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wind-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/windmill-bold.svg b/phosphor_orig/SVGs Flat/bold/windmill-bold.svg new file mode 100644 index 0000000..376c217 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/windmill-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/windows-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/windows-logo-bold.svg new file mode 100644 index 0000000..fb2503f --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/windows-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wine-bold.svg b/phosphor_orig/SVGs Flat/bold/wine-bold.svg new file mode 100644 index 0000000..f76a5fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wine-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/wrench-bold.svg b/phosphor_orig/SVGs Flat/bold/wrench-bold.svg new file mode 100644 index 0000000..fef17bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/wrench-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/x-bold.svg b/phosphor_orig/SVGs Flat/bold/x-bold.svg new file mode 100644 index 0000000..11aeb12 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/x-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/x-circle-bold.svg b/phosphor_orig/SVGs Flat/bold/x-circle-bold.svg new file mode 100644 index 0000000..963fed6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/x-circle-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/x-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/x-logo-bold.svg new file mode 100644 index 0000000..f619284 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/x-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/x-square-bold.svg b/phosphor_orig/SVGs Flat/bold/x-square-bold.svg new file mode 100644 index 0000000..6b5082c --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/x-square-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/yarn-bold.svg b/phosphor_orig/SVGs Flat/bold/yarn-bold.svg new file mode 100644 index 0000000..3658b99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/yarn-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/yin-yang-bold.svg b/phosphor_orig/SVGs Flat/bold/yin-yang-bold.svg new file mode 100644 index 0000000..4caac84 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/yin-yang-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/bold/youtube-logo-bold.svg b/phosphor_orig/SVGs Flat/bold/youtube-logo-bold.svg new file mode 100644 index 0000000..39d8245 --- /dev/null +++ b/phosphor_orig/SVGs Flat/bold/youtube-logo-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/acorn-duotone.svg b/phosphor_orig/SVGs Flat/duotone/acorn-duotone.svg new file mode 100644 index 0000000..ad17de0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/acorn-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/address-book-duotone.svg b/phosphor_orig/SVGs Flat/duotone/address-book-duotone.svg new file mode 100644 index 0000000..9674c9f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/address-book-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/address-book-tabs-duotone.svg b/phosphor_orig/SVGs Flat/duotone/address-book-tabs-duotone.svg new file mode 100644 index 0000000..3ba8cc0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/address-book-tabs-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/air-traffic-control-duotone.svg b/phosphor_orig/SVGs Flat/duotone/air-traffic-control-duotone.svg new file mode 100644 index 0000000..ab542f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/air-traffic-control-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/airplane-duotone.svg b/phosphor_orig/SVGs Flat/duotone/airplane-duotone.svg new file mode 100644 index 0000000..f5a8563 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/airplane-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/airplane-in-flight-duotone.svg b/phosphor_orig/SVGs Flat/duotone/airplane-in-flight-duotone.svg new file mode 100644 index 0000000..454a4a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/airplane-in-flight-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/airplane-landing-duotone.svg b/phosphor_orig/SVGs Flat/duotone/airplane-landing-duotone.svg new file mode 100644 index 0000000..c743935 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/airplane-landing-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/airplane-takeoff-duotone.svg b/phosphor_orig/SVGs Flat/duotone/airplane-takeoff-duotone.svg new file mode 100644 index 0000000..ef0626f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/airplane-takeoff-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/airplane-taxiing-duotone.svg b/phosphor_orig/SVGs Flat/duotone/airplane-taxiing-duotone.svg new file mode 100644 index 0000000..7d9dd42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/airplane-taxiing-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/airplane-tilt-duotone.svg b/phosphor_orig/SVGs Flat/duotone/airplane-tilt-duotone.svg new file mode 100644 index 0000000..f4a5e82 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/airplane-tilt-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/airplay-duotone.svg b/phosphor_orig/SVGs Flat/duotone/airplay-duotone.svg new file mode 100644 index 0000000..11fc34e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/airplay-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/alarm-duotone.svg b/phosphor_orig/SVGs Flat/duotone/alarm-duotone.svg new file mode 100644 index 0000000..63608c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/alarm-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/alien-duotone.svg b/phosphor_orig/SVGs Flat/duotone/alien-duotone.svg new file mode 100644 index 0000000..18bc504 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/alien-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/align-bottom-duotone.svg b/phosphor_orig/SVGs Flat/duotone/align-bottom-duotone.svg new file mode 100644 index 0000000..9194430 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/align-bottom-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/align-bottom-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/align-bottom-simple-duotone.svg new file mode 100644 index 0000000..510e129 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/align-bottom-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/align-center-horizontal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/align-center-horizontal-duotone.svg new file mode 100644 index 0000000..911e8b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/align-center-horizontal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/align-center-horizontal-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/align-center-horizontal-simple-duotone.svg new file mode 100644 index 0000000..428338d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/align-center-horizontal-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/align-center-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/align-center-vertical-duotone.svg new file mode 100644 index 0000000..2779fff --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/align-center-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/align-center-vertical-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/align-center-vertical-simple-duotone.svg new file mode 100644 index 0000000..406593c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/align-center-vertical-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/align-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/align-left-duotone.svg new file mode 100644 index 0000000..62d28fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/align-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/align-left-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/align-left-simple-duotone.svg new file mode 100644 index 0000000..d208f9c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/align-left-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/align-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/align-right-duotone.svg new file mode 100644 index 0000000..231c09a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/align-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/align-right-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/align-right-simple-duotone.svg new file mode 100644 index 0000000..6b4cdcc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/align-right-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/align-top-duotone.svg b/phosphor_orig/SVGs Flat/duotone/align-top-duotone.svg new file mode 100644 index 0000000..05a7d47 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/align-top-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/align-top-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/align-top-simple-duotone.svg new file mode 100644 index 0000000..4982c71 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/align-top-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/amazon-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/amazon-logo-duotone.svg new file mode 100644 index 0000000..5be10fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/amazon-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/ambulance-duotone.svg b/phosphor_orig/SVGs Flat/duotone/ambulance-duotone.svg new file mode 100644 index 0000000..9489894 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/ambulance-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/anchor-duotone.svg b/phosphor_orig/SVGs Flat/duotone/anchor-duotone.svg new file mode 100644 index 0000000..b63f274 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/anchor-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/anchor-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/anchor-simple-duotone.svg new file mode 100644 index 0000000..638d195 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/anchor-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/android-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/android-logo-duotone.svg new file mode 100644 index 0000000..6e9d05e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/android-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/angle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/angle-duotone.svg new file mode 100644 index 0000000..2bbc485 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/angle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/angular-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/angular-logo-duotone.svg new file mode 100644 index 0000000..917e541 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/angular-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/aperture-duotone.svg b/phosphor_orig/SVGs Flat/duotone/aperture-duotone.svg new file mode 100644 index 0000000..b41c902 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/aperture-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/app-store-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/app-store-logo-duotone.svg new file mode 100644 index 0000000..0519221 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/app-store-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/app-window-duotone.svg b/phosphor_orig/SVGs Flat/duotone/app-window-duotone.svg new file mode 100644 index 0000000..7f1c64a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/app-window-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/apple-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/apple-logo-duotone.svg new file mode 100644 index 0000000..0196141 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/apple-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/apple-podcasts-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/apple-podcasts-logo-duotone.svg new file mode 100644 index 0000000..0909feb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/apple-podcasts-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/approximate-equals-duotone.svg b/phosphor_orig/SVGs Flat/duotone/approximate-equals-duotone.svg new file mode 100644 index 0000000..e83955e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/approximate-equals-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/archive-duotone.svg b/phosphor_orig/SVGs Flat/duotone/archive-duotone.svg new file mode 100644 index 0000000..2b28034 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/archive-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/armchair-duotone.svg b/phosphor_orig/SVGs Flat/duotone/armchair-duotone.svg new file mode 100644 index 0000000..d84ce14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/armchair-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-arc-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-arc-left-duotone.svg new file mode 100644 index 0000000..138ed7e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-arc-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-arc-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-arc-right-duotone.svg new file mode 100644 index 0000000..49155a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-arc-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-bend-double-up-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-bend-double-up-left-duotone.svg new file mode 100644 index 0000000..7267c20 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-bend-double-up-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-bend-double-up-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-bend-double-up-right-duotone.svg new file mode 100644 index 0000000..29ce35b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-bend-double-up-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-bend-down-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-bend-down-left-duotone.svg new file mode 100644 index 0000000..b1d5947 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-bend-down-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-bend-down-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-bend-down-right-duotone.svg new file mode 100644 index 0000000..99e483a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-bend-down-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-bend-left-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-bend-left-down-duotone.svg new file mode 100644 index 0000000..d7172c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-bend-left-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-bend-left-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-bend-left-up-duotone.svg new file mode 100644 index 0000000..b119b87 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-bend-left-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-bend-right-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-bend-right-down-duotone.svg new file mode 100644 index 0000000..5c29de5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-bend-right-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-bend-right-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-bend-right-up-duotone.svg new file mode 100644 index 0000000..e54199b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-bend-right-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-bend-up-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-bend-up-left-duotone.svg new file mode 100644 index 0000000..8dc12f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-bend-up-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-bend-up-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-bend-up-right-duotone.svg new file mode 100644 index 0000000..42cb725 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-bend-up-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-circle-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-circle-down-duotone.svg new file mode 100644 index 0000000..133c006 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-circle-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-circle-down-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-circle-down-left-duotone.svg new file mode 100644 index 0000000..f59d5f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-circle-down-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-circle-down-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-circle-down-right-duotone.svg new file mode 100644 index 0000000..970e113 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-circle-down-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-circle-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-circle-left-duotone.svg new file mode 100644 index 0000000..f8969de --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-circle-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-circle-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-circle-right-duotone.svg new file mode 100644 index 0000000..84faa9f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-circle-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-circle-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-circle-up-duotone.svg new file mode 100644 index 0000000..d4da65c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-circle-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-circle-up-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-circle-up-left-duotone.svg new file mode 100644 index 0000000..c9c27b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-circle-up-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-circle-up-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-circle-up-right-duotone.svg new file mode 100644 index 0000000..886a50c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-circle-up-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-clockwise-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-clockwise-duotone.svg new file mode 100644 index 0000000..cf0e518 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-clockwise-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-counter-clockwise-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-counter-clockwise-duotone.svg new file mode 100644 index 0000000..56d3d01 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-counter-clockwise-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-down-duotone.svg new file mode 100644 index 0000000..9b87193 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-down-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-down-left-duotone.svg new file mode 100644 index 0000000..754922d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-down-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-down-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-down-right-duotone.svg new file mode 100644 index 0000000..17a339a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-down-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-elbow-down-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-down-left-duotone.svg new file mode 100644 index 0000000..d912210 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-down-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-elbow-down-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-down-right-duotone.svg new file mode 100644 index 0000000..f195ac5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-down-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-elbow-left-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-left-down-duotone.svg new file mode 100644 index 0000000..f7d11de --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-left-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-elbow-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-left-duotone.svg new file mode 100644 index 0000000..73cce14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-elbow-left-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-left-up-duotone.svg new file mode 100644 index 0000000..6ac60ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-left-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-elbow-right-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-right-down-duotone.svg new file mode 100644 index 0000000..beebdf0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-right-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-elbow-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-right-duotone.svg new file mode 100644 index 0000000..4020736 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-elbow-right-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-right-up-duotone.svg new file mode 100644 index 0000000..872271c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-right-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-elbow-up-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-up-left-duotone.svg new file mode 100644 index 0000000..9744245 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-up-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-elbow-up-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-up-right-duotone.svg new file mode 100644 index 0000000..49bb692 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-elbow-up-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-fat-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-fat-down-duotone.svg new file mode 100644 index 0000000..8e34aa2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-fat-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-fat-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-fat-left-duotone.svg new file mode 100644 index 0000000..425e934 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-fat-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-fat-line-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-fat-line-down-duotone.svg new file mode 100644 index 0000000..61602ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-fat-line-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-fat-line-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-fat-line-left-duotone.svg new file mode 100644 index 0000000..f4c7cfe --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-fat-line-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-fat-line-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-fat-line-right-duotone.svg new file mode 100644 index 0000000..b1dd96b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-fat-line-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-fat-line-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-fat-line-up-duotone.svg new file mode 100644 index 0000000..860eb1e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-fat-line-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-fat-lines-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-fat-lines-down-duotone.svg new file mode 100644 index 0000000..42db272 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-fat-lines-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-fat-lines-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-fat-lines-left-duotone.svg new file mode 100644 index 0000000..48f524e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-fat-lines-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-fat-lines-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-fat-lines-right-duotone.svg new file mode 100644 index 0000000..529192e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-fat-lines-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-fat-lines-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-fat-lines-up-duotone.svg new file mode 100644 index 0000000..1465be8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-fat-lines-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-fat-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-fat-right-duotone.svg new file mode 100644 index 0000000..851f28a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-fat-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-fat-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-fat-up-duotone.svg new file mode 100644 index 0000000..1b339b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-fat-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-left-duotone.svg new file mode 100644 index 0000000..3dfbbea --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-line-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-line-down-duotone.svg new file mode 100644 index 0000000..86f4575 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-line-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-line-down-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-line-down-left-duotone.svg new file mode 100644 index 0000000..2c417aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-line-down-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-line-down-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-line-down-right-duotone.svg new file mode 100644 index 0000000..dbf0148 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-line-down-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-line-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-line-left-duotone.svg new file mode 100644 index 0000000..6d7d886 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-line-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-line-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-line-right-duotone.svg new file mode 100644 index 0000000..3f98387 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-line-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-line-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-line-up-duotone.svg new file mode 100644 index 0000000..ec2ea08 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-line-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-line-up-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-line-up-left-duotone.svg new file mode 100644 index 0000000..65a0644 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-line-up-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-line-up-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-line-up-right-duotone.svg new file mode 100644 index 0000000..714537b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-line-up-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-right-duotone.svg new file mode 100644 index 0000000..4eaf0cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-square-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-square-down-duotone.svg new file mode 100644 index 0000000..b59492d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-square-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-square-down-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-square-down-left-duotone.svg new file mode 100644 index 0000000..8a4d6e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-square-down-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-square-down-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-square-down-right-duotone.svg new file mode 100644 index 0000000..91753ff --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-square-down-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-square-in-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-square-in-duotone.svg new file mode 100644 index 0000000..64b037c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-square-in-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-square-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-square-left-duotone.svg new file mode 100644 index 0000000..1e1174b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-square-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-square-out-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-square-out-duotone.svg new file mode 100644 index 0000000..fae5041 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-square-out-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-square-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-square-right-duotone.svg new file mode 100644 index 0000000..66bb910 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-square-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-square-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-square-up-duotone.svg new file mode 100644 index 0000000..a95ac76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-square-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-square-up-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-square-up-left-duotone.svg new file mode 100644 index 0000000..ca6a939 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-square-up-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-square-up-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-square-up-right-duotone.svg new file mode 100644 index 0000000..73f2cd9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-square-up-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-u-down-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-u-down-left-duotone.svg new file mode 100644 index 0000000..bf88dbc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-u-down-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-u-down-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-u-down-right-duotone.svg new file mode 100644 index 0000000..c744fdd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-u-down-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-u-left-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-u-left-down-duotone.svg new file mode 100644 index 0000000..a9d960b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-u-left-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-u-left-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-u-left-up-duotone.svg new file mode 100644 index 0000000..c1331e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-u-left-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-u-right-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-u-right-down-duotone.svg new file mode 100644 index 0000000..21dae92 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-u-right-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-u-right-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-u-right-up-duotone.svg new file mode 100644 index 0000000..6b33ac3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-u-right-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-u-up-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-u-up-left-duotone.svg new file mode 100644 index 0000000..39d21ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-u-up-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-u-up-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-u-up-right-duotone.svg new file mode 100644 index 0000000..132755e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-u-up-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-up-duotone.svg new file mode 100644 index 0000000..32a1e23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-up-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-up-left-duotone.svg new file mode 100644 index 0000000..f8393a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-up-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrow-up-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrow-up-right-duotone.svg new file mode 100644 index 0000000..e418b4f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrow-up-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-clockwise-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-clockwise-duotone.svg new file mode 100644 index 0000000..edcae7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-clockwise-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-counter-clockwise-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-counter-clockwise-duotone.svg new file mode 100644 index 0000000..dfed5ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-counter-clockwise-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-down-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-down-up-duotone.svg new file mode 100644 index 0000000..c181b61 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-down-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-horizontal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-horizontal-duotone.svg new file mode 100644 index 0000000..a6674c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-horizontal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-in-cardinal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-in-cardinal-duotone.svg new file mode 100644 index 0000000..099169d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-in-cardinal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-in-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-in-duotone.svg new file mode 100644 index 0000000..ad98b6c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-in-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-in-line-horizontal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-in-line-horizontal-duotone.svg new file mode 100644 index 0000000..f197277 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-in-line-horizontal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-in-line-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-in-line-vertical-duotone.svg new file mode 100644 index 0000000..665e15e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-in-line-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-in-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-in-simple-duotone.svg new file mode 100644 index 0000000..42a1c70 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-in-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-left-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-left-right-duotone.svg new file mode 100644 index 0000000..80f487c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-left-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-merge-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-merge-duotone.svg new file mode 100644 index 0000000..d1b5acf --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-merge-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-out-cardinal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-out-cardinal-duotone.svg new file mode 100644 index 0000000..e238ba1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-out-cardinal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-out-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-out-duotone.svg new file mode 100644 index 0000000..e7a21b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-out-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-out-line-horizontal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-out-line-horizontal-duotone.svg new file mode 100644 index 0000000..48f7e49 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-out-line-horizontal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-out-line-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-out-line-vertical-duotone.svg new file mode 100644 index 0000000..b12be60 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-out-line-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-out-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-out-simple-duotone.svg new file mode 100644 index 0000000..764e2e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-out-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-split-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-split-duotone.svg new file mode 100644 index 0000000..dea8c6e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-split-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/arrows-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/arrows-vertical-duotone.svg new file mode 100644 index 0000000..90a3859 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/arrows-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/article-duotone.svg b/phosphor_orig/SVGs Flat/duotone/article-duotone.svg new file mode 100644 index 0000000..68a24d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/article-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/article-medium-duotone.svg b/phosphor_orig/SVGs Flat/duotone/article-medium-duotone.svg new file mode 100644 index 0000000..a68a7c3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/article-medium-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/article-ny-times-duotone.svg b/phosphor_orig/SVGs Flat/duotone/article-ny-times-duotone.svg new file mode 100644 index 0000000..fe0e089 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/article-ny-times-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/asclepius-duotone.svg b/phosphor_orig/SVGs Flat/duotone/asclepius-duotone.svg new file mode 100644 index 0000000..65a0a7b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/asclepius-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/asterisk-duotone.svg b/phosphor_orig/SVGs Flat/duotone/asterisk-duotone.svg new file mode 100644 index 0000000..21c4184 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/asterisk-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/asterisk-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/asterisk-simple-duotone.svg new file mode 100644 index 0000000..3021ec5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/asterisk-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/at-duotone.svg b/phosphor_orig/SVGs Flat/duotone/at-duotone.svg new file mode 100644 index 0000000..220b014 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/at-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/atom-duotone.svg b/phosphor_orig/SVGs Flat/duotone/atom-duotone.svg new file mode 100644 index 0000000..2045556 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/atom-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/avocado-duotone.svg b/phosphor_orig/SVGs Flat/duotone/avocado-duotone.svg new file mode 100644 index 0000000..462e156 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/avocado-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/axe-duotone.svg b/phosphor_orig/SVGs Flat/duotone/axe-duotone.svg new file mode 100644 index 0000000..1a9067d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/axe-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/baby-carriage-duotone.svg b/phosphor_orig/SVGs Flat/duotone/baby-carriage-duotone.svg new file mode 100644 index 0000000..b649906 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/baby-carriage-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/baby-duotone.svg b/phosphor_orig/SVGs Flat/duotone/baby-duotone.svg new file mode 100644 index 0000000..f0f5f24 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/baby-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/backpack-duotone.svg b/phosphor_orig/SVGs Flat/duotone/backpack-duotone.svg new file mode 100644 index 0000000..1ba8ee2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/backpack-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/backspace-duotone.svg b/phosphor_orig/SVGs Flat/duotone/backspace-duotone.svg new file mode 100644 index 0000000..465bd35 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/backspace-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bag-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bag-duotone.svg new file mode 100644 index 0000000..5084a14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bag-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bag-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bag-simple-duotone.svg new file mode 100644 index 0000000..db48b4c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bag-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/balloon-duotone.svg b/phosphor_orig/SVGs Flat/duotone/balloon-duotone.svg new file mode 100644 index 0000000..2ac5f31 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/balloon-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bandaids-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bandaids-duotone.svg new file mode 100644 index 0000000..161d687 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bandaids-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bank-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bank-duotone.svg new file mode 100644 index 0000000..f21958a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bank-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/barbell-duotone.svg b/phosphor_orig/SVGs Flat/duotone/barbell-duotone.svg new file mode 100644 index 0000000..a604cc7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/barbell-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/barcode-duotone.svg b/phosphor_orig/SVGs Flat/duotone/barcode-duotone.svg new file mode 100644 index 0000000..76c6b3c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/barcode-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/barn-duotone.svg b/phosphor_orig/SVGs Flat/duotone/barn-duotone.svg new file mode 100644 index 0000000..c65833d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/barn-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/barricade-duotone.svg b/phosphor_orig/SVGs Flat/duotone/barricade-duotone.svg new file mode 100644 index 0000000..27f7ef3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/barricade-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/baseball-cap-duotone.svg b/phosphor_orig/SVGs Flat/duotone/baseball-cap-duotone.svg new file mode 100644 index 0000000..ec60c14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/baseball-cap-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/baseball-duotone.svg b/phosphor_orig/SVGs Flat/duotone/baseball-duotone.svg new file mode 100644 index 0000000..e6eb1ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/baseball-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/baseball-helmet-duotone.svg b/phosphor_orig/SVGs Flat/duotone/baseball-helmet-duotone.svg new file mode 100644 index 0000000..42db385 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/baseball-helmet-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/basket-duotone.svg b/phosphor_orig/SVGs Flat/duotone/basket-duotone.svg new file mode 100644 index 0000000..d09044e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/basket-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/basketball-duotone.svg b/phosphor_orig/SVGs Flat/duotone/basketball-duotone.svg new file mode 100644 index 0000000..58e4e3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/basketball-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bathtub-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bathtub-duotone.svg new file mode 100644 index 0000000..93dc498 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bathtub-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-charging-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-charging-duotone.svg new file mode 100644 index 0000000..53b1967 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-charging-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-charging-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-charging-vertical-duotone.svg new file mode 100644 index 0000000..8f87699 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-charging-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-empty-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-empty-duotone.svg new file mode 100644 index 0000000..5b832bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-empty-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-full-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-full-duotone.svg new file mode 100644 index 0000000..d450adf --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-full-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-high-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-high-duotone.svg new file mode 100644 index 0000000..2ed57cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-high-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-low-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-low-duotone.svg new file mode 100644 index 0000000..a47cb60 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-low-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-medium-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-medium-duotone.svg new file mode 100644 index 0000000..79ddb94 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-medium-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-plus-duotone.svg new file mode 100644 index 0000000..0f67857 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-plus-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-plus-vertical-duotone.svg new file mode 100644 index 0000000..3818ab7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-plus-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-vertical-empty-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-vertical-empty-duotone.svg new file mode 100644 index 0000000..b9733bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-vertical-empty-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-vertical-full-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-vertical-full-duotone.svg new file mode 100644 index 0000000..919b224 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-vertical-full-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-vertical-high-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-vertical-high-duotone.svg new file mode 100644 index 0000000..07d7f32 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-vertical-high-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-vertical-low-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-vertical-low-duotone.svg new file mode 100644 index 0000000..93d4bf4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-vertical-low-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-vertical-medium-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-vertical-medium-duotone.svg new file mode 100644 index 0000000..61c6f92 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-vertical-medium-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-warning-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-warning-duotone.svg new file mode 100644 index 0000000..5399a60 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-warning-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/battery-warning-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/battery-warning-vertical-duotone.svg new file mode 100644 index 0000000..c41a47e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/battery-warning-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/beach-ball-duotone.svg b/phosphor_orig/SVGs Flat/duotone/beach-ball-duotone.svg new file mode 100644 index 0000000..2253a2c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/beach-ball-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/beanie-duotone.svg b/phosphor_orig/SVGs Flat/duotone/beanie-duotone.svg new file mode 100644 index 0000000..015ac3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/beanie-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bed-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bed-duotone.svg new file mode 100644 index 0000000..43e3cf6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bed-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/beer-bottle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/beer-bottle-duotone.svg new file mode 100644 index 0000000..eb9f337 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/beer-bottle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/beer-stein-duotone.svg b/phosphor_orig/SVGs Flat/duotone/beer-stein-duotone.svg new file mode 100644 index 0000000..198dd99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/beer-stein-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/behance-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/behance-logo-duotone.svg new file mode 100644 index 0000000..acc166f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/behance-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bell-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bell-duotone.svg new file mode 100644 index 0000000..88c6609 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bell-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bell-ringing-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bell-ringing-duotone.svg new file mode 100644 index 0000000..5dace0b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bell-ringing-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bell-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bell-simple-duotone.svg new file mode 100644 index 0000000..f3f4846 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bell-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bell-simple-ringing-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bell-simple-ringing-duotone.svg new file mode 100644 index 0000000..f6511cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bell-simple-ringing-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bell-simple-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bell-simple-slash-duotone.svg new file mode 100644 index 0000000..201bb38 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bell-simple-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bell-simple-z-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bell-simple-z-duotone.svg new file mode 100644 index 0000000..41ffa2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bell-simple-z-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bell-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bell-slash-duotone.svg new file mode 100644 index 0000000..10e15ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bell-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bell-z-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bell-z-duotone.svg new file mode 100644 index 0000000..6784b5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bell-z-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/belt-duotone.svg b/phosphor_orig/SVGs Flat/duotone/belt-duotone.svg new file mode 100644 index 0000000..ffbd56d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/belt-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bezier-curve-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bezier-curve-duotone.svg new file mode 100644 index 0000000..7dcaa3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bezier-curve-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bicycle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bicycle-duotone.svg new file mode 100644 index 0000000..da0fa49 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bicycle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/binary-duotone.svg b/phosphor_orig/SVGs Flat/duotone/binary-duotone.svg new file mode 100644 index 0000000..218161c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/binary-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/binoculars-duotone.svg b/phosphor_orig/SVGs Flat/duotone/binoculars-duotone.svg new file mode 100644 index 0000000..df173fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/binoculars-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/biohazard-duotone.svg b/phosphor_orig/SVGs Flat/duotone/biohazard-duotone.svg new file mode 100644 index 0000000..66bcc8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/biohazard-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bird-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bird-duotone.svg new file mode 100644 index 0000000..37b172f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bird-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/blueprint-duotone.svg b/phosphor_orig/SVGs Flat/duotone/blueprint-duotone.svg new file mode 100644 index 0000000..ce85b94 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/blueprint-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bluetooth-connected-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bluetooth-connected-duotone.svg new file mode 100644 index 0000000..de2f34e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bluetooth-connected-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bluetooth-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bluetooth-duotone.svg new file mode 100644 index 0000000..660ffdc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bluetooth-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bluetooth-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bluetooth-slash-duotone.svg new file mode 100644 index 0000000..9d1c4b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bluetooth-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bluetooth-x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bluetooth-x-duotone.svg new file mode 100644 index 0000000..385d193 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bluetooth-x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/boat-duotone.svg b/phosphor_orig/SVGs Flat/duotone/boat-duotone.svg new file mode 100644 index 0000000..134d7e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/boat-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bomb-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bomb-duotone.svg new file mode 100644 index 0000000..68f284d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bomb-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bone-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bone-duotone.svg new file mode 100644 index 0000000..08efbcb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bone-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/book-bookmark-duotone.svg b/phosphor_orig/SVGs Flat/duotone/book-bookmark-duotone.svg new file mode 100644 index 0000000..6f82d92 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/book-bookmark-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/book-duotone.svg b/phosphor_orig/SVGs Flat/duotone/book-duotone.svg new file mode 100644 index 0000000..12775c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/book-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/book-open-duotone.svg b/phosphor_orig/SVGs Flat/duotone/book-open-duotone.svg new file mode 100644 index 0000000..e25810b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/book-open-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/book-open-text-duotone.svg b/phosphor_orig/SVGs Flat/duotone/book-open-text-duotone.svg new file mode 100644 index 0000000..e0739d6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/book-open-text-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/book-user-duotone.svg b/phosphor_orig/SVGs Flat/duotone/book-user-duotone.svg new file mode 100644 index 0000000..fa42355 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/book-user-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bookmark-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bookmark-duotone.svg new file mode 100644 index 0000000..61250c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bookmark-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bookmark-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bookmark-simple-duotone.svg new file mode 100644 index 0000000..1a82bb0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bookmark-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bookmarks-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bookmarks-duotone.svg new file mode 100644 index 0000000..1be75c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bookmarks-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bookmarks-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bookmarks-simple-duotone.svg new file mode 100644 index 0000000..d2574b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bookmarks-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/books-duotone.svg b/phosphor_orig/SVGs Flat/duotone/books-duotone.svg new file mode 100644 index 0000000..1e60f90 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/books-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/boot-duotone.svg b/phosphor_orig/SVGs Flat/duotone/boot-duotone.svg new file mode 100644 index 0000000..7b7a14d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/boot-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/boules-duotone.svg b/phosphor_orig/SVGs Flat/duotone/boules-duotone.svg new file mode 100644 index 0000000..668358b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/boules-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bounding-box-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bounding-box-duotone.svg new file mode 100644 index 0000000..5ec5689 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bounding-box-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bowl-food-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bowl-food-duotone.svg new file mode 100644 index 0000000..de2d559 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bowl-food-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bowl-steam-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bowl-steam-duotone.svg new file mode 100644 index 0000000..495022a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bowl-steam-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bowling-ball-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bowling-ball-duotone.svg new file mode 100644 index 0000000..1c77b1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bowling-ball-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/box-arrow-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/box-arrow-down-duotone.svg new file mode 100644 index 0000000..9aa8245 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/box-arrow-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/box-arrow-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/box-arrow-up-duotone.svg new file mode 100644 index 0000000..8efb4d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/box-arrow-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/boxing-glove-duotone.svg b/phosphor_orig/SVGs Flat/duotone/boxing-glove-duotone.svg new file mode 100644 index 0000000..2475c62 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/boxing-glove-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/brackets-angle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/brackets-angle-duotone.svg new file mode 100644 index 0000000..f87df56 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/brackets-angle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/brackets-curly-duotone.svg b/phosphor_orig/SVGs Flat/duotone/brackets-curly-duotone.svg new file mode 100644 index 0000000..357f534 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/brackets-curly-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/brackets-round-duotone.svg b/phosphor_orig/SVGs Flat/duotone/brackets-round-duotone.svg new file mode 100644 index 0000000..37d32e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/brackets-round-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/brackets-square-duotone.svg b/phosphor_orig/SVGs Flat/duotone/brackets-square-duotone.svg new file mode 100644 index 0000000..b8bc91f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/brackets-square-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/brain-duotone.svg b/phosphor_orig/SVGs Flat/duotone/brain-duotone.svg new file mode 100644 index 0000000..9e65ea1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/brain-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/brandy-duotone.svg b/phosphor_orig/SVGs Flat/duotone/brandy-duotone.svg new file mode 100644 index 0000000..aafe15b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/brandy-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bread-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bread-duotone.svg new file mode 100644 index 0000000..207742d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bread-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bridge-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bridge-duotone.svg new file mode 100644 index 0000000..6ee4690 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bridge-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/briefcase-duotone.svg b/phosphor_orig/SVGs Flat/duotone/briefcase-duotone.svg new file mode 100644 index 0000000..b7e936d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/briefcase-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/briefcase-metal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/briefcase-metal-duotone.svg new file mode 100644 index 0000000..56253bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/briefcase-metal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/broadcast-duotone.svg b/phosphor_orig/SVGs Flat/duotone/broadcast-duotone.svg new file mode 100644 index 0000000..9e0fdd7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/broadcast-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/broom-duotone.svg b/phosphor_orig/SVGs Flat/duotone/broom-duotone.svg new file mode 100644 index 0000000..41d071a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/broom-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/browser-duotone.svg b/phosphor_orig/SVGs Flat/duotone/browser-duotone.svg new file mode 100644 index 0000000..d4e9065 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/browser-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/browsers-duotone.svg b/phosphor_orig/SVGs Flat/duotone/browsers-duotone.svg new file mode 100644 index 0000000..72e304b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/browsers-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bug-beetle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bug-beetle-duotone.svg new file mode 100644 index 0000000..b5617de --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bug-beetle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bug-droid-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bug-droid-duotone.svg new file mode 100644 index 0000000..5bb5b59 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bug-droid-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bug-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bug-duotone.svg new file mode 100644 index 0000000..8dc03c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bug-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/building-apartment-duotone.svg b/phosphor_orig/SVGs Flat/duotone/building-apartment-duotone.svg new file mode 100644 index 0000000..9ad14af --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/building-apartment-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/building-duotone.svg b/phosphor_orig/SVGs Flat/duotone/building-duotone.svg new file mode 100644 index 0000000..250b227 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/building-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/building-office-duotone.svg b/phosphor_orig/SVGs Flat/duotone/building-office-duotone.svg new file mode 100644 index 0000000..5f6dc15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/building-office-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/buildings-duotone.svg b/phosphor_orig/SVGs Flat/duotone/buildings-duotone.svg new file mode 100644 index 0000000..6f94d2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/buildings-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bulldozer-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bulldozer-duotone.svg new file mode 100644 index 0000000..2a16558 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bulldozer-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/bus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/bus-duotone.svg new file mode 100644 index 0000000..a35a578 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/bus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/butterfly-duotone.svg b/phosphor_orig/SVGs Flat/duotone/butterfly-duotone.svg new file mode 100644 index 0000000..521d23d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/butterfly-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cable-car-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cable-car-duotone.svg new file mode 100644 index 0000000..c007a75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cable-car-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cactus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cactus-duotone.svg new file mode 100644 index 0000000..9ac2c6e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cactus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cake-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cake-duotone.svg new file mode 100644 index 0000000..fae4084 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cake-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/calculator-duotone.svg b/phosphor_orig/SVGs Flat/duotone/calculator-duotone.svg new file mode 100644 index 0000000..874e946 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/calculator-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/calendar-blank-duotone.svg b/phosphor_orig/SVGs Flat/duotone/calendar-blank-duotone.svg new file mode 100644 index 0000000..39f728d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/calendar-blank-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/calendar-check-duotone.svg b/phosphor_orig/SVGs Flat/duotone/calendar-check-duotone.svg new file mode 100644 index 0000000..e3587e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/calendar-check-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/calendar-dot-duotone.svg b/phosphor_orig/SVGs Flat/duotone/calendar-dot-duotone.svg new file mode 100644 index 0000000..27ffa8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/calendar-dot-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/calendar-dots-duotone.svg b/phosphor_orig/SVGs Flat/duotone/calendar-dots-duotone.svg new file mode 100644 index 0000000..8bc47b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/calendar-dots-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/calendar-duotone.svg b/phosphor_orig/SVGs Flat/duotone/calendar-duotone.svg new file mode 100644 index 0000000..01ecde5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/calendar-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/calendar-heart-duotone.svg b/phosphor_orig/SVGs Flat/duotone/calendar-heart-duotone.svg new file mode 100644 index 0000000..0f010af --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/calendar-heart-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/calendar-minus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/calendar-minus-duotone.svg new file mode 100644 index 0000000..1d5e97c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/calendar-minus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/calendar-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/calendar-plus-duotone.svg new file mode 100644 index 0000000..3d0bbb0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/calendar-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/calendar-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/calendar-slash-duotone.svg new file mode 100644 index 0000000..7eee484 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/calendar-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/calendar-star-duotone.svg b/phosphor_orig/SVGs Flat/duotone/calendar-star-duotone.svg new file mode 100644 index 0000000..138bbaa --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/calendar-star-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/calendar-x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/calendar-x-duotone.svg new file mode 100644 index 0000000..e369c49 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/calendar-x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/call-bell-duotone.svg b/phosphor_orig/SVGs Flat/duotone/call-bell-duotone.svg new file mode 100644 index 0000000..4c788be --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/call-bell-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/camera-duotone.svg b/phosphor_orig/SVGs Flat/duotone/camera-duotone.svg new file mode 100644 index 0000000..0f31815 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/camera-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/camera-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/camera-plus-duotone.svg new file mode 100644 index 0000000..b72dac7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/camera-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/camera-rotate-duotone.svg b/phosphor_orig/SVGs Flat/duotone/camera-rotate-duotone.svg new file mode 100644 index 0000000..2620c3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/camera-rotate-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/camera-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/camera-slash-duotone.svg new file mode 100644 index 0000000..8d0f220 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/camera-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/campfire-duotone.svg b/phosphor_orig/SVGs Flat/duotone/campfire-duotone.svg new file mode 100644 index 0000000..feda372 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/campfire-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/car-battery-duotone.svg b/phosphor_orig/SVGs Flat/duotone/car-battery-duotone.svg new file mode 100644 index 0000000..1b324c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/car-battery-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/car-duotone.svg b/phosphor_orig/SVGs Flat/duotone/car-duotone.svg new file mode 100644 index 0000000..99bc30a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/car-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/car-profile-duotone.svg b/phosphor_orig/SVGs Flat/duotone/car-profile-duotone.svg new file mode 100644 index 0000000..b709728 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/car-profile-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/car-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/car-simple-duotone.svg new file mode 100644 index 0000000..7fec506 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/car-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cardholder-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cardholder-duotone.svg new file mode 100644 index 0000000..4e94fec --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cardholder-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cards-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cards-duotone.svg new file mode 100644 index 0000000..adae96e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cards-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cards-three-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cards-three-duotone.svg new file mode 100644 index 0000000..fd63e93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cards-three-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-circle-double-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-circle-double-down-duotone.svg new file mode 100644 index 0000000..c560652 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-circle-double-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-circle-double-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-circle-double-left-duotone.svg new file mode 100644 index 0000000..1a6578d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-circle-double-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-circle-double-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-circle-double-right-duotone.svg new file mode 100644 index 0000000..408f2b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-circle-double-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-circle-double-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-circle-double-up-duotone.svg new file mode 100644 index 0000000..f0433ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-circle-double-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-circle-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-circle-down-duotone.svg new file mode 100644 index 0000000..13e62f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-circle-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-circle-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-circle-left-duotone.svg new file mode 100644 index 0000000..71a732e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-circle-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-circle-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-circle-right-duotone.svg new file mode 100644 index 0000000..1fb63aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-circle-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-circle-up-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-circle-up-down-duotone.svg new file mode 100644 index 0000000..fdaccff --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-circle-up-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-circle-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-circle-up-duotone.svg new file mode 100644 index 0000000..634809b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-circle-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-double-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-double-down-duotone.svg new file mode 100644 index 0000000..2db47d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-double-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-double-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-double-left-duotone.svg new file mode 100644 index 0000000..bba1d15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-double-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-double-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-double-right-duotone.svg new file mode 100644 index 0000000..e413a0c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-double-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-double-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-double-up-duotone.svg new file mode 100644 index 0000000..c117d03 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-double-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-down-duotone.svg new file mode 100644 index 0000000..cb99643 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-left-duotone.svg new file mode 100644 index 0000000..63355dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-line-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-line-down-duotone.svg new file mode 100644 index 0000000..6c178db --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-line-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-line-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-line-left-duotone.svg new file mode 100644 index 0000000..c3ae43a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-line-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-line-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-line-right-duotone.svg new file mode 100644 index 0000000..3e3024c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-line-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-line-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-line-up-duotone.svg new file mode 100644 index 0000000..e654343 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-line-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-right-duotone.svg new file mode 100644 index 0000000..0044afe --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-up-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-up-down-duotone.svg new file mode 100644 index 0000000..7cadfb8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-up-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/caret-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/caret-up-duotone.svg new file mode 100644 index 0000000..9f03dae --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/caret-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/carrot-duotone.svg b/phosphor_orig/SVGs Flat/duotone/carrot-duotone.svg new file mode 100644 index 0000000..1e4ebf1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/carrot-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cash-register-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cash-register-duotone.svg new file mode 100644 index 0000000..2384705 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cash-register-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cassette-tape-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cassette-tape-duotone.svg new file mode 100644 index 0000000..a580a02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cassette-tape-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/castle-turret-duotone.svg b/phosphor_orig/SVGs Flat/duotone/castle-turret-duotone.svg new file mode 100644 index 0000000..210fcbf --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/castle-turret-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cat-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cat-duotone.svg new file mode 100644 index 0000000..ab014b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cat-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cell-signal-full-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cell-signal-full-duotone.svg new file mode 100644 index 0000000..70f8de1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cell-signal-full-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cell-signal-high-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cell-signal-high-duotone.svg new file mode 100644 index 0000000..32efd00 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cell-signal-high-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cell-signal-low-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cell-signal-low-duotone.svg new file mode 100644 index 0000000..3c5cc10 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cell-signal-low-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cell-signal-medium-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cell-signal-medium-duotone.svg new file mode 100644 index 0000000..e61e2fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cell-signal-medium-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cell-signal-none-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cell-signal-none-duotone.svg new file mode 100644 index 0000000..85d6f40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cell-signal-none-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cell-signal-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cell-signal-slash-duotone.svg new file mode 100644 index 0000000..fdcb211 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cell-signal-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cell-signal-x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cell-signal-x-duotone.svg new file mode 100644 index 0000000..1098b34 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cell-signal-x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cell-tower-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cell-tower-duotone.svg new file mode 100644 index 0000000..7714474 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cell-tower-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/certificate-duotone.svg b/phosphor_orig/SVGs Flat/duotone/certificate-duotone.svg new file mode 100644 index 0000000..c9a2d64 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/certificate-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chair-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chair-duotone.svg new file mode 100644 index 0000000..fd41db9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chair-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chalkboard-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chalkboard-duotone.svg new file mode 100644 index 0000000..9de0359 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chalkboard-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chalkboard-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chalkboard-simple-duotone.svg new file mode 100644 index 0000000..6dd78d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chalkboard-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chalkboard-teacher-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chalkboard-teacher-duotone.svg new file mode 100644 index 0000000..7f2d483 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chalkboard-teacher-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/champagne-duotone.svg b/phosphor_orig/SVGs Flat/duotone/champagne-duotone.svg new file mode 100644 index 0000000..17fc8ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/champagne-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/charging-station-duotone.svg b/phosphor_orig/SVGs Flat/duotone/charging-station-duotone.svg new file mode 100644 index 0000000..29dc9fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/charging-station-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chart-bar-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chart-bar-duotone.svg new file mode 100644 index 0000000..fe482a8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chart-bar-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chart-bar-horizontal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chart-bar-horizontal-duotone.svg new file mode 100644 index 0000000..8f060ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chart-bar-horizontal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chart-donut-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chart-donut-duotone.svg new file mode 100644 index 0000000..6a00d4b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chart-donut-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chart-line-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chart-line-down-duotone.svg new file mode 100644 index 0000000..3bdd195 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chart-line-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chart-line-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chart-line-duotone.svg new file mode 100644 index 0000000..7856ed7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chart-line-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chart-line-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chart-line-up-duotone.svg new file mode 100644 index 0000000..a7a9183 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chart-line-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chart-pie-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chart-pie-duotone.svg new file mode 100644 index 0000000..d4e0b54 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chart-pie-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chart-pie-slice-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chart-pie-slice-duotone.svg new file mode 100644 index 0000000..6ba0807 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chart-pie-slice-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chart-polar-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chart-polar-duotone.svg new file mode 100644 index 0000000..c4717d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chart-polar-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chart-scatter-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chart-scatter-duotone.svg new file mode 100644 index 0000000..e0715b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chart-scatter-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-centered-dots-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-centered-dots-duotone.svg new file mode 100644 index 0000000..6c2e087 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-centered-dots-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-centered-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-centered-duotone.svg new file mode 100644 index 0000000..838b971 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-centered-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-centered-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-centered-slash-duotone.svg new file mode 100644 index 0000000..f13c9d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-centered-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-centered-text-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-centered-text-duotone.svg new file mode 100644 index 0000000..620cac5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-centered-text-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-circle-dots-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-circle-dots-duotone.svg new file mode 100644 index 0000000..171ea1e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-circle-dots-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-circle-duotone.svg new file mode 100644 index 0000000..80e5998 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-circle-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-circle-slash-duotone.svg new file mode 100644 index 0000000..864650d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-circle-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-circle-text-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-circle-text-duotone.svg new file mode 100644 index 0000000..06f6d53 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-circle-text-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-dots-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-dots-duotone.svg new file mode 100644 index 0000000..8500b30 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-dots-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-duotone.svg new file mode 100644 index 0000000..4de9e34 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-slash-duotone.svg new file mode 100644 index 0000000..9f0a923 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-teardrop-dots-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-teardrop-dots-duotone.svg new file mode 100644 index 0000000..5b8f514 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-teardrop-dots-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-teardrop-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-teardrop-duotone.svg new file mode 100644 index 0000000..da93510 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-teardrop-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-teardrop-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-teardrop-slash-duotone.svg new file mode 100644 index 0000000..d1d8066 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-teardrop-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-teardrop-text-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-teardrop-text-duotone.svg new file mode 100644 index 0000000..09599bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-teardrop-text-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chat-text-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chat-text-duotone.svg new file mode 100644 index 0000000..6cd3035 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chat-text-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chats-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chats-circle-duotone.svg new file mode 100644 index 0000000..cfaee57 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chats-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chats-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chats-duotone.svg new file mode 100644 index 0000000..cd9db55 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chats-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chats-teardrop-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chats-teardrop-duotone.svg new file mode 100644 index 0000000..eadc0b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chats-teardrop-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/check-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/check-circle-duotone.svg new file mode 100644 index 0000000..af32789 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/check-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/check-duotone.svg b/phosphor_orig/SVGs Flat/duotone/check-duotone.svg new file mode 100644 index 0000000..50b0b38 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/check-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/check-fat-duotone.svg b/phosphor_orig/SVGs Flat/duotone/check-fat-duotone.svg new file mode 100644 index 0000000..94d4373 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/check-fat-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/check-square-duotone.svg b/phosphor_orig/SVGs Flat/duotone/check-square-duotone.svg new file mode 100644 index 0000000..f5b9254 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/check-square-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/check-square-offset-duotone.svg b/phosphor_orig/SVGs Flat/duotone/check-square-offset-duotone.svg new file mode 100644 index 0000000..10034fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/check-square-offset-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/checkerboard-duotone.svg b/phosphor_orig/SVGs Flat/duotone/checkerboard-duotone.svg new file mode 100644 index 0000000..515aec0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/checkerboard-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/checks-duotone.svg b/phosphor_orig/SVGs Flat/duotone/checks-duotone.svg new file mode 100644 index 0000000..2a190e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/checks-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cheers-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cheers-duotone.svg new file mode 100644 index 0000000..6bee325 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cheers-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cheese-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cheese-duotone.svg new file mode 100644 index 0000000..8f07fb6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cheese-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/chef-hat-duotone.svg b/phosphor_orig/SVGs Flat/duotone/chef-hat-duotone.svg new file mode 100644 index 0000000..df36c35 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/chef-hat-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cherries-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cherries-duotone.svg new file mode 100644 index 0000000..d6c45f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cherries-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/church-duotone.svg b/phosphor_orig/SVGs Flat/duotone/church-duotone.svg new file mode 100644 index 0000000..7c7755f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/church-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cigarette-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cigarette-duotone.svg new file mode 100644 index 0000000..368602e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cigarette-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cigarette-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cigarette-slash-duotone.svg new file mode 100644 index 0000000..442db23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cigarette-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/circle-dashed-duotone.svg b/phosphor_orig/SVGs Flat/duotone/circle-dashed-duotone.svg new file mode 100644 index 0000000..14842ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/circle-dashed-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/circle-duotone.svg new file mode 100644 index 0000000..f48acb0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/circle-half-duotone.svg b/phosphor_orig/SVGs Flat/duotone/circle-half-duotone.svg new file mode 100644 index 0000000..635af58 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/circle-half-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/circle-half-tilt-duotone.svg b/phosphor_orig/SVGs Flat/duotone/circle-half-tilt-duotone.svg new file mode 100644 index 0000000..8673478 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/circle-half-tilt-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/circle-notch-duotone.svg b/phosphor_orig/SVGs Flat/duotone/circle-notch-duotone.svg new file mode 100644 index 0000000..1b948ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/circle-notch-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/circles-four-duotone.svg b/phosphor_orig/SVGs Flat/duotone/circles-four-duotone.svg new file mode 100644 index 0000000..2af6fda --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/circles-four-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/circles-three-duotone.svg b/phosphor_orig/SVGs Flat/duotone/circles-three-duotone.svg new file mode 100644 index 0000000..f7e70af --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/circles-three-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/circles-three-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/circles-three-plus-duotone.svg new file mode 100644 index 0000000..104aa67 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/circles-three-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/circuitry-duotone.svg b/phosphor_orig/SVGs Flat/duotone/circuitry-duotone.svg new file mode 100644 index 0000000..af87768 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/circuitry-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/city-duotone.svg b/phosphor_orig/SVGs Flat/duotone/city-duotone.svg new file mode 100644 index 0000000..3ba03a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/city-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/clipboard-duotone.svg b/phosphor_orig/SVGs Flat/duotone/clipboard-duotone.svg new file mode 100644 index 0000000..ba9ebba --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/clipboard-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/clipboard-text-duotone.svg b/phosphor_orig/SVGs Flat/duotone/clipboard-text-duotone.svg new file mode 100644 index 0000000..083a139 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/clipboard-text-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/clock-afternoon-duotone.svg b/phosphor_orig/SVGs Flat/duotone/clock-afternoon-duotone.svg new file mode 100644 index 0000000..cd56839 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/clock-afternoon-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/clock-clockwise-duotone.svg b/phosphor_orig/SVGs Flat/duotone/clock-clockwise-duotone.svg new file mode 100644 index 0000000..51afc54 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/clock-clockwise-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/clock-countdown-duotone.svg b/phosphor_orig/SVGs Flat/duotone/clock-countdown-duotone.svg new file mode 100644 index 0000000..3623401 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/clock-countdown-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/clock-counter-clockwise-duotone.svg b/phosphor_orig/SVGs Flat/duotone/clock-counter-clockwise-duotone.svg new file mode 100644 index 0000000..185f063 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/clock-counter-clockwise-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/clock-duotone.svg b/phosphor_orig/SVGs Flat/duotone/clock-duotone.svg new file mode 100644 index 0000000..5a2e6bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/clock-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/clock-user-duotone.svg b/phosphor_orig/SVGs Flat/duotone/clock-user-duotone.svg new file mode 100644 index 0000000..c0d32c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/clock-user-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/closed-captioning-duotone.svg b/phosphor_orig/SVGs Flat/duotone/closed-captioning-duotone.svg new file mode 100644 index 0000000..48c0fe4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/closed-captioning-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cloud-arrow-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cloud-arrow-down-duotone.svg new file mode 100644 index 0000000..d928158 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cloud-arrow-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cloud-arrow-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cloud-arrow-up-duotone.svg new file mode 100644 index 0000000..4b3f0ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cloud-arrow-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cloud-check-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cloud-check-duotone.svg new file mode 100644 index 0000000..d9b6a24 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cloud-check-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cloud-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cloud-duotone.svg new file mode 100644 index 0000000..fe2b655 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cloud-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cloud-fog-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cloud-fog-duotone.svg new file mode 100644 index 0000000..eaa6287 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cloud-fog-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cloud-lightning-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cloud-lightning-duotone.svg new file mode 100644 index 0000000..89bb487 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cloud-lightning-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cloud-moon-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cloud-moon-duotone.svg new file mode 100644 index 0000000..8a0f540 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cloud-moon-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cloud-rain-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cloud-rain-duotone.svg new file mode 100644 index 0000000..f44e168 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cloud-rain-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cloud-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cloud-slash-duotone.svg new file mode 100644 index 0000000..cbcc363 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cloud-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cloud-snow-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cloud-snow-duotone.svg new file mode 100644 index 0000000..865a0b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cloud-snow-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cloud-sun-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cloud-sun-duotone.svg new file mode 100644 index 0000000..27a1e8b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cloud-sun-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cloud-warning-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cloud-warning-duotone.svg new file mode 100644 index 0000000..3856e10 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cloud-warning-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cloud-x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cloud-x-duotone.svg new file mode 100644 index 0000000..b0cf214 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cloud-x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/clover-duotone.svg b/phosphor_orig/SVGs Flat/duotone/clover-duotone.svg new file mode 100644 index 0000000..6b4392c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/clover-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/club-duotone.svg b/phosphor_orig/SVGs Flat/duotone/club-duotone.svg new file mode 100644 index 0000000..c7788e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/club-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/coat-hanger-duotone.svg b/phosphor_orig/SVGs Flat/duotone/coat-hanger-duotone.svg new file mode 100644 index 0000000..6d4fc62 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/coat-hanger-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/coda-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/coda-logo-duotone.svg new file mode 100644 index 0000000..f54305a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/coda-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/code-block-duotone.svg b/phosphor_orig/SVGs Flat/duotone/code-block-duotone.svg new file mode 100644 index 0000000..38da0a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/code-block-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/code-duotone.svg b/phosphor_orig/SVGs Flat/duotone/code-duotone.svg new file mode 100644 index 0000000..06354d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/code-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/code-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/code-simple-duotone.svg new file mode 100644 index 0000000..c2c4497 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/code-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/codepen-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/codepen-logo-duotone.svg new file mode 100644 index 0000000..2b09fa3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/codepen-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/codesandbox-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/codesandbox-logo-duotone.svg new file mode 100644 index 0000000..7150b23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/codesandbox-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/coffee-bean-duotone.svg b/phosphor_orig/SVGs Flat/duotone/coffee-bean-duotone.svg new file mode 100644 index 0000000..2b98082 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/coffee-bean-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/coffee-duotone.svg b/phosphor_orig/SVGs Flat/duotone/coffee-duotone.svg new file mode 100644 index 0000000..87b5e42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/coffee-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/coin-duotone.svg b/phosphor_orig/SVGs Flat/duotone/coin-duotone.svg new file mode 100644 index 0000000..63ac496 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/coin-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/coin-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/coin-vertical-duotone.svg new file mode 100644 index 0000000..1a5b89f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/coin-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/coins-duotone.svg b/phosphor_orig/SVGs Flat/duotone/coins-duotone.svg new file mode 100644 index 0000000..887b172 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/coins-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/columns-duotone.svg b/phosphor_orig/SVGs Flat/duotone/columns-duotone.svg new file mode 100644 index 0000000..f3ac5d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/columns-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/columns-plus-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/columns-plus-left-duotone.svg new file mode 100644 index 0000000..288fc27 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/columns-plus-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/columns-plus-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/columns-plus-right-duotone.svg new file mode 100644 index 0000000..ab98996 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/columns-plus-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/command-duotone.svg b/phosphor_orig/SVGs Flat/duotone/command-duotone.svg new file mode 100644 index 0000000..6d81d4c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/command-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/compass-duotone.svg b/phosphor_orig/SVGs Flat/duotone/compass-duotone.svg new file mode 100644 index 0000000..c09af2a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/compass-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/compass-rose-duotone.svg b/phosphor_orig/SVGs Flat/duotone/compass-rose-duotone.svg new file mode 100644 index 0000000..d742a52 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/compass-rose-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/compass-tool-duotone.svg b/phosphor_orig/SVGs Flat/duotone/compass-tool-duotone.svg new file mode 100644 index 0000000..56ac595 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/compass-tool-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/computer-tower-duotone.svg b/phosphor_orig/SVGs Flat/duotone/computer-tower-duotone.svg new file mode 100644 index 0000000..304dc94 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/computer-tower-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/confetti-duotone.svg b/phosphor_orig/SVGs Flat/duotone/confetti-duotone.svg new file mode 100644 index 0000000..e82aa06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/confetti-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/contactless-payment-duotone.svg b/phosphor_orig/SVGs Flat/duotone/contactless-payment-duotone.svg new file mode 100644 index 0000000..4a49767 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/contactless-payment-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/control-duotone.svg b/phosphor_orig/SVGs Flat/duotone/control-duotone.svg new file mode 100644 index 0000000..bf47f9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/control-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cookie-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cookie-duotone.svg new file mode 100644 index 0000000..3386e59 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cookie-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cooking-pot-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cooking-pot-duotone.svg new file mode 100644 index 0000000..65e7fa4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cooking-pot-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/copy-duotone.svg b/phosphor_orig/SVGs Flat/duotone/copy-duotone.svg new file mode 100644 index 0000000..9758cd8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/copy-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/copy-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/copy-simple-duotone.svg new file mode 100644 index 0000000..8a559e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/copy-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/copyleft-duotone.svg b/phosphor_orig/SVGs Flat/duotone/copyleft-duotone.svg new file mode 100644 index 0000000..38a01ce --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/copyleft-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/copyright-duotone.svg b/phosphor_orig/SVGs Flat/duotone/copyright-duotone.svg new file mode 100644 index 0000000..e2d47f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/copyright-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/corners-in-duotone.svg b/phosphor_orig/SVGs Flat/duotone/corners-in-duotone.svg new file mode 100644 index 0000000..203655e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/corners-in-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/corners-out-duotone.svg b/phosphor_orig/SVGs Flat/duotone/corners-out-duotone.svg new file mode 100644 index 0000000..6bfe60c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/corners-out-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/couch-duotone.svg b/phosphor_orig/SVGs Flat/duotone/couch-duotone.svg new file mode 100644 index 0000000..98395b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/couch-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/court-basketball-duotone.svg b/phosphor_orig/SVGs Flat/duotone/court-basketball-duotone.svg new file mode 100644 index 0000000..961ec3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/court-basketball-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cow-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cow-duotone.svg new file mode 100644 index 0000000..2f4056a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cow-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cowboy-hat-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cowboy-hat-duotone.svg new file mode 100644 index 0000000..d504b7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cowboy-hat-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cpu-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cpu-duotone.svg new file mode 100644 index 0000000..e113bb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cpu-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/crane-duotone.svg b/phosphor_orig/SVGs Flat/duotone/crane-duotone.svg new file mode 100644 index 0000000..33f4794 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/crane-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/crane-tower-duotone.svg b/phosphor_orig/SVGs Flat/duotone/crane-tower-duotone.svg new file mode 100644 index 0000000..1c5896a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/crane-tower-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/credit-card-duotone.svg b/phosphor_orig/SVGs Flat/duotone/credit-card-duotone.svg new file mode 100644 index 0000000..06be314 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/credit-card-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cricket-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cricket-duotone.svg new file mode 100644 index 0000000..0931570 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cricket-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/crop-duotone.svg b/phosphor_orig/SVGs Flat/duotone/crop-duotone.svg new file mode 100644 index 0000000..42cc2bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/crop-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cross-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cross-duotone.svg new file mode 100644 index 0000000..ffc46a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cross-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/crosshair-duotone.svg b/phosphor_orig/SVGs Flat/duotone/crosshair-duotone.svg new file mode 100644 index 0000000..e8580dd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/crosshair-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/crosshair-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/crosshair-simple-duotone.svg new file mode 100644 index 0000000..e111cee --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/crosshair-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/crown-cross-duotone.svg b/phosphor_orig/SVGs Flat/duotone/crown-cross-duotone.svg new file mode 100644 index 0000000..c7d31d6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/crown-cross-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/crown-duotone.svg b/phosphor_orig/SVGs Flat/duotone/crown-duotone.svg new file mode 100644 index 0000000..d717e47 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/crown-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/crown-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/crown-simple-duotone.svg new file mode 100644 index 0000000..a3af9a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/crown-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cube-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cube-duotone.svg new file mode 100644 index 0000000..b7f014b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cube-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cube-focus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cube-focus-duotone.svg new file mode 100644 index 0000000..a214db1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cube-focus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cube-transparent-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cube-transparent-duotone.svg new file mode 100644 index 0000000..c0cb019 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cube-transparent-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/currency-btc-duotone.svg b/phosphor_orig/SVGs Flat/duotone/currency-btc-duotone.svg new file mode 100644 index 0000000..2d98602 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/currency-btc-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/currency-circle-dollar-duotone.svg b/phosphor_orig/SVGs Flat/duotone/currency-circle-dollar-duotone.svg new file mode 100644 index 0000000..d9207fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/currency-circle-dollar-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/currency-cny-duotone.svg b/phosphor_orig/SVGs Flat/duotone/currency-cny-duotone.svg new file mode 100644 index 0000000..f904682 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/currency-cny-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/currency-dollar-duotone.svg b/phosphor_orig/SVGs Flat/duotone/currency-dollar-duotone.svg new file mode 100644 index 0000000..03f4b48 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/currency-dollar-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/currency-dollar-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/currency-dollar-simple-duotone.svg new file mode 100644 index 0000000..89e38b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/currency-dollar-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/currency-eth-duotone.svg b/phosphor_orig/SVGs Flat/duotone/currency-eth-duotone.svg new file mode 100644 index 0000000..7960e5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/currency-eth-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/currency-eur-duotone.svg b/phosphor_orig/SVGs Flat/duotone/currency-eur-duotone.svg new file mode 100644 index 0000000..11b044b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/currency-eur-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/currency-gbp-duotone.svg b/phosphor_orig/SVGs Flat/duotone/currency-gbp-duotone.svg new file mode 100644 index 0000000..68d06c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/currency-gbp-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/currency-inr-duotone.svg b/phosphor_orig/SVGs Flat/duotone/currency-inr-duotone.svg new file mode 100644 index 0000000..f4a4a07 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/currency-inr-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/currency-jpy-duotone.svg b/phosphor_orig/SVGs Flat/duotone/currency-jpy-duotone.svg new file mode 100644 index 0000000..3228229 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/currency-jpy-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/currency-krw-duotone.svg b/phosphor_orig/SVGs Flat/duotone/currency-krw-duotone.svg new file mode 100644 index 0000000..5a466e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/currency-krw-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/currency-kzt-duotone.svg b/phosphor_orig/SVGs Flat/duotone/currency-kzt-duotone.svg new file mode 100644 index 0000000..e868150 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/currency-kzt-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/currency-ngn-duotone.svg b/phosphor_orig/SVGs Flat/duotone/currency-ngn-duotone.svg new file mode 100644 index 0000000..6891b0d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/currency-ngn-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/currency-rub-duotone.svg b/phosphor_orig/SVGs Flat/duotone/currency-rub-duotone.svg new file mode 100644 index 0000000..af29b00 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/currency-rub-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cursor-click-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cursor-click-duotone.svg new file mode 100644 index 0000000..7a3bd59 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cursor-click-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cursor-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cursor-duotone.svg new file mode 100644 index 0000000..e6310b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cursor-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cursor-text-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cursor-text-duotone.svg new file mode 100644 index 0000000..e88e141 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cursor-text-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/cylinder-duotone.svg b/phosphor_orig/SVGs Flat/duotone/cylinder-duotone.svg new file mode 100644 index 0000000..f0231fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/cylinder-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/database-duotone.svg b/phosphor_orig/SVGs Flat/duotone/database-duotone.svg new file mode 100644 index 0000000..a0fec33 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/database-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/desk-duotone.svg b/phosphor_orig/SVGs Flat/duotone/desk-duotone.svg new file mode 100644 index 0000000..16bff67 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/desk-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/desktop-duotone.svg b/phosphor_orig/SVGs Flat/duotone/desktop-duotone.svg new file mode 100644 index 0000000..8bc78a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/desktop-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/desktop-tower-duotone.svg b/phosphor_orig/SVGs Flat/duotone/desktop-tower-duotone.svg new file mode 100644 index 0000000..a956188 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/desktop-tower-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/detective-duotone.svg b/phosphor_orig/SVGs Flat/duotone/detective-duotone.svg new file mode 100644 index 0000000..63e8d0a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/detective-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dev-to-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dev-to-logo-duotone.svg new file mode 100644 index 0000000..2c1303b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dev-to-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/device-mobile-camera-duotone.svg b/phosphor_orig/SVGs Flat/duotone/device-mobile-camera-duotone.svg new file mode 100644 index 0000000..999e58f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/device-mobile-camera-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/device-mobile-duotone.svg b/phosphor_orig/SVGs Flat/duotone/device-mobile-duotone.svg new file mode 100644 index 0000000..f7dc1a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/device-mobile-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/device-mobile-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/device-mobile-slash-duotone.svg new file mode 100644 index 0000000..faeffb8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/device-mobile-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/device-mobile-speaker-duotone.svg b/phosphor_orig/SVGs Flat/duotone/device-mobile-speaker-duotone.svg new file mode 100644 index 0000000..4c2083d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/device-mobile-speaker-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/device-rotate-duotone.svg b/phosphor_orig/SVGs Flat/duotone/device-rotate-duotone.svg new file mode 100644 index 0000000..d99269c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/device-rotate-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/device-tablet-camera-duotone.svg b/phosphor_orig/SVGs Flat/duotone/device-tablet-camera-duotone.svg new file mode 100644 index 0000000..8af35a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/device-tablet-camera-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/device-tablet-duotone.svg b/phosphor_orig/SVGs Flat/duotone/device-tablet-duotone.svg new file mode 100644 index 0000000..57a21a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/device-tablet-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/device-tablet-speaker-duotone.svg b/phosphor_orig/SVGs Flat/duotone/device-tablet-speaker-duotone.svg new file mode 100644 index 0000000..96fdfe5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/device-tablet-speaker-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/devices-duotone.svg b/phosphor_orig/SVGs Flat/duotone/devices-duotone.svg new file mode 100644 index 0000000..e44c5da --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/devices-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/diamond-duotone.svg b/phosphor_orig/SVGs Flat/duotone/diamond-duotone.svg new file mode 100644 index 0000000..8f6ccdb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/diamond-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/diamonds-four-duotone.svg b/phosphor_orig/SVGs Flat/duotone/diamonds-four-duotone.svg new file mode 100644 index 0000000..d546bb4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/diamonds-four-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dice-five-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dice-five-duotone.svg new file mode 100644 index 0000000..e200265 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dice-five-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dice-four-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dice-four-duotone.svg new file mode 100644 index 0000000..38cf814 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dice-four-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dice-one-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dice-one-duotone.svg new file mode 100644 index 0000000..cc73c34 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dice-one-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dice-six-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dice-six-duotone.svg new file mode 100644 index 0000000..298a388 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dice-six-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dice-three-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dice-three-duotone.svg new file mode 100644 index 0000000..f2c8958 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dice-three-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dice-two-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dice-two-duotone.svg new file mode 100644 index 0000000..42f13ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dice-two-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/disc-duotone.svg b/phosphor_orig/SVGs Flat/duotone/disc-duotone.svg new file mode 100644 index 0000000..cf29838 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/disc-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/disco-ball-duotone.svg b/phosphor_orig/SVGs Flat/duotone/disco-ball-duotone.svg new file mode 100644 index 0000000..4e71cc3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/disco-ball-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/discord-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/discord-logo-duotone.svg new file mode 100644 index 0000000..1f38d6b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/discord-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/divide-duotone.svg b/phosphor_orig/SVGs Flat/duotone/divide-duotone.svg new file mode 100644 index 0000000..33f65a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/divide-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dna-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dna-duotone.svg new file mode 100644 index 0000000..5633c20 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dna-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dog-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dog-duotone.svg new file mode 100644 index 0000000..a4ee7a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dog-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/door-duotone.svg b/phosphor_orig/SVGs Flat/duotone/door-duotone.svg new file mode 100644 index 0000000..99ad849 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/door-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/door-open-duotone.svg b/phosphor_orig/SVGs Flat/duotone/door-open-duotone.svg new file mode 100644 index 0000000..00a5f6b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/door-open-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dot-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dot-duotone.svg new file mode 100644 index 0000000..2e05e12 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dot-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dot-outline-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dot-outline-duotone.svg new file mode 100644 index 0000000..cb8c386 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dot-outline-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dots-nine-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dots-nine-duotone.svg new file mode 100644 index 0000000..d5a8250 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dots-nine-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dots-six-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dots-six-duotone.svg new file mode 100644 index 0000000..a972a9d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dots-six-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dots-six-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dots-six-vertical-duotone.svg new file mode 100644 index 0000000..f6ec1e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dots-six-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dots-three-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dots-three-circle-duotone.svg new file mode 100644 index 0000000..de6e358 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dots-three-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dots-three-circle-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dots-three-circle-vertical-duotone.svg new file mode 100644 index 0000000..1a5c678 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dots-three-circle-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dots-three-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dots-three-duotone.svg new file mode 100644 index 0000000..c7dd5f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dots-three-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dots-three-outline-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dots-three-outline-duotone.svg new file mode 100644 index 0000000..66234f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dots-three-outline-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dots-three-outline-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dots-three-outline-vertical-duotone.svg new file mode 100644 index 0000000..1cb9189 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dots-three-outline-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dots-three-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dots-three-vertical-duotone.svg new file mode 100644 index 0000000..d2debe9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dots-three-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/download-duotone.svg b/phosphor_orig/SVGs Flat/duotone/download-duotone.svg new file mode 100644 index 0000000..426e2bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/download-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/download-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/download-simple-duotone.svg new file mode 100644 index 0000000..24004f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/download-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dress-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dress-duotone.svg new file mode 100644 index 0000000..4fc2a07 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dress-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dresser-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dresser-duotone.svg new file mode 100644 index 0000000..d4f7d2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dresser-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dribbble-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dribbble-logo-duotone.svg new file mode 100644 index 0000000..fd5964e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dribbble-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/drone-duotone.svg b/phosphor_orig/SVGs Flat/duotone/drone-duotone.svg new file mode 100644 index 0000000..a22d308 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/drone-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/drop-duotone.svg b/phosphor_orig/SVGs Flat/duotone/drop-duotone.svg new file mode 100644 index 0000000..5247465 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/drop-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/drop-half-bottom-duotone.svg b/phosphor_orig/SVGs Flat/duotone/drop-half-bottom-duotone.svg new file mode 100644 index 0000000..9275300 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/drop-half-bottom-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/drop-half-duotone.svg b/phosphor_orig/SVGs Flat/duotone/drop-half-duotone.svg new file mode 100644 index 0000000..3866c6c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/drop-half-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/drop-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/drop-simple-duotone.svg new file mode 100644 index 0000000..73cea89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/drop-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/drop-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/drop-slash-duotone.svg new file mode 100644 index 0000000..1ec5a28 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/drop-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/dropbox-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/dropbox-logo-duotone.svg new file mode 100644 index 0000000..583e2e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/dropbox-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/ear-duotone.svg b/phosphor_orig/SVGs Flat/duotone/ear-duotone.svg new file mode 100644 index 0000000..9e51729 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/ear-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/ear-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/ear-slash-duotone.svg new file mode 100644 index 0000000..64037ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/ear-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/egg-crack-duotone.svg b/phosphor_orig/SVGs Flat/duotone/egg-crack-duotone.svg new file mode 100644 index 0000000..a4701b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/egg-crack-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/egg-duotone.svg b/phosphor_orig/SVGs Flat/duotone/egg-duotone.svg new file mode 100644 index 0000000..ec2bef9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/egg-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/eject-duotone.svg b/phosphor_orig/SVGs Flat/duotone/eject-duotone.svg new file mode 100644 index 0000000..b5e8738 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/eject-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/eject-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/eject-simple-duotone.svg new file mode 100644 index 0000000..551d4af --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/eject-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/elevator-duotone.svg b/phosphor_orig/SVGs Flat/duotone/elevator-duotone.svg new file mode 100644 index 0000000..01f8e80 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/elevator-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/empty-duotone.svg b/phosphor_orig/SVGs Flat/duotone/empty-duotone.svg new file mode 100644 index 0000000..91e5ffb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/empty-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/engine-duotone.svg b/phosphor_orig/SVGs Flat/duotone/engine-duotone.svg new file mode 100644 index 0000000..6490442 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/engine-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/envelope-duotone.svg b/phosphor_orig/SVGs Flat/duotone/envelope-duotone.svg new file mode 100644 index 0000000..9237e2c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/envelope-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/envelope-open-duotone.svg b/phosphor_orig/SVGs Flat/duotone/envelope-open-duotone.svg new file mode 100644 index 0000000..48c240f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/envelope-open-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/envelope-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/envelope-simple-duotone.svg new file mode 100644 index 0000000..b653b3c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/envelope-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/envelope-simple-open-duotone.svg b/phosphor_orig/SVGs Flat/duotone/envelope-simple-open-duotone.svg new file mode 100644 index 0000000..e923e07 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/envelope-simple-open-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/equalizer-duotone.svg b/phosphor_orig/SVGs Flat/duotone/equalizer-duotone.svg new file mode 100644 index 0000000..60e5cf6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/equalizer-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/equals-duotone.svg b/phosphor_orig/SVGs Flat/duotone/equals-duotone.svg new file mode 100644 index 0000000..c98b74f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/equals-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/eraser-duotone.svg b/phosphor_orig/SVGs Flat/duotone/eraser-duotone.svg new file mode 100644 index 0000000..7f23c38 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/eraser-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/escalator-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/escalator-down-duotone.svg new file mode 100644 index 0000000..beb869e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/escalator-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/escalator-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/escalator-up-duotone.svg new file mode 100644 index 0000000..a3945c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/escalator-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/exam-duotone.svg b/phosphor_orig/SVGs Flat/duotone/exam-duotone.svg new file mode 100644 index 0000000..c53d977 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/exam-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/exclamation-mark-duotone.svg b/phosphor_orig/SVGs Flat/duotone/exclamation-mark-duotone.svg new file mode 100644 index 0000000..6ea8b3f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/exclamation-mark-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/exclude-duotone.svg b/phosphor_orig/SVGs Flat/duotone/exclude-duotone.svg new file mode 100644 index 0000000..86b2374 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/exclude-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/exclude-square-duotone.svg b/phosphor_orig/SVGs Flat/duotone/exclude-square-duotone.svg new file mode 100644 index 0000000..3c05452 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/exclude-square-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/export-duotone.svg b/phosphor_orig/SVGs Flat/duotone/export-duotone.svg new file mode 100644 index 0000000..208ece9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/export-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/eye-closed-duotone.svg b/phosphor_orig/SVGs Flat/duotone/eye-closed-duotone.svg new file mode 100644 index 0000000..8a21c3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/eye-closed-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/eye-duotone.svg b/phosphor_orig/SVGs Flat/duotone/eye-duotone.svg new file mode 100644 index 0000000..5e45570 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/eye-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/eye-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/eye-slash-duotone.svg new file mode 100644 index 0000000..0c50bb9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/eye-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/eyedropper-duotone.svg b/phosphor_orig/SVGs Flat/duotone/eyedropper-duotone.svg new file mode 100644 index 0000000..d2600be --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/eyedropper-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/eyedropper-sample-duotone.svg b/phosphor_orig/SVGs Flat/duotone/eyedropper-sample-duotone.svg new file mode 100644 index 0000000..0b376c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/eyedropper-sample-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/eyeglasses-duotone.svg b/phosphor_orig/SVGs Flat/duotone/eyeglasses-duotone.svg new file mode 100644 index 0000000..bb3df05 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/eyeglasses-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/eyes-duotone.svg b/phosphor_orig/SVGs Flat/duotone/eyes-duotone.svg new file mode 100644 index 0000000..73e7186 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/eyes-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/face-mask-duotone.svg b/phosphor_orig/SVGs Flat/duotone/face-mask-duotone.svg new file mode 100644 index 0000000..26e188d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/face-mask-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/facebook-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/facebook-logo-duotone.svg new file mode 100644 index 0000000..0f7462f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/facebook-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/factory-duotone.svg b/phosphor_orig/SVGs Flat/duotone/factory-duotone.svg new file mode 100644 index 0000000..cc40d4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/factory-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/faders-duotone.svg b/phosphor_orig/SVGs Flat/duotone/faders-duotone.svg new file mode 100644 index 0000000..ab016cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/faders-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/faders-horizontal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/faders-horizontal-duotone.svg new file mode 100644 index 0000000..6f62db1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/faders-horizontal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/fallout-shelter-duotone.svg b/phosphor_orig/SVGs Flat/duotone/fallout-shelter-duotone.svg new file mode 100644 index 0000000..4537276 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/fallout-shelter-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/fan-duotone.svg b/phosphor_orig/SVGs Flat/duotone/fan-duotone.svg new file mode 100644 index 0000000..b459c75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/fan-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/farm-duotone.svg b/phosphor_orig/SVGs Flat/duotone/farm-duotone.svg new file mode 100644 index 0000000..a576141 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/farm-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/fast-forward-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/fast-forward-circle-duotone.svg new file mode 100644 index 0000000..1616ae5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/fast-forward-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/fast-forward-duotone.svg b/phosphor_orig/SVGs Flat/duotone/fast-forward-duotone.svg new file mode 100644 index 0000000..4ede191 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/fast-forward-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/feather-duotone.svg b/phosphor_orig/SVGs Flat/duotone/feather-duotone.svg new file mode 100644 index 0000000..0ce5b19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/feather-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/fediverse-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/fediverse-logo-duotone.svg new file mode 100644 index 0000000..1ac4367 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/fediverse-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/figma-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/figma-logo-duotone.svg new file mode 100644 index 0000000..edbb06b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/figma-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-archive-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-archive-duotone.svg new file mode 100644 index 0000000..069ca54 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-archive-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-arrow-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-arrow-down-duotone.svg new file mode 100644 index 0000000..c273e6b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-arrow-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-arrow-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-arrow-up-duotone.svg new file mode 100644 index 0000000..4a54cf2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-arrow-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-audio-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-audio-duotone.svg new file mode 100644 index 0000000..63e822d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-audio-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-c-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-c-duotone.svg new file mode 100644 index 0000000..566f282 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-c-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-c-sharp-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-c-sharp-duotone.svg new file mode 100644 index 0000000..8bba367 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-c-sharp-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-cloud-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-cloud-duotone.svg new file mode 100644 index 0000000..b5a95a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-cloud-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-code-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-code-duotone.svg new file mode 100644 index 0000000..6835d88 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-code-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-cpp-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-cpp-duotone.svg new file mode 100644 index 0000000..99ba427 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-cpp-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-css-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-css-duotone.svg new file mode 100644 index 0000000..094ca02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-css-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-csv-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-csv-duotone.svg new file mode 100644 index 0000000..f13da21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-csv-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-dashed-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-dashed-duotone.svg new file mode 100644 index 0000000..9666926 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-dashed-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-doc-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-doc-duotone.svg new file mode 100644 index 0000000..c93f70b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-doc-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-duotone.svg new file mode 100644 index 0000000..ff8a54b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-html-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-html-duotone.svg new file mode 100644 index 0000000..eaa20d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-html-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-image-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-image-duotone.svg new file mode 100644 index 0000000..204531e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-image-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-ini-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-ini-duotone.svg new file mode 100644 index 0000000..2beb36d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-ini-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-jpg-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-jpg-duotone.svg new file mode 100644 index 0000000..074dd22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-jpg-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-js-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-js-duotone.svg new file mode 100644 index 0000000..7ff374a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-js-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-jsx-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-jsx-duotone.svg new file mode 100644 index 0000000..42f0d99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-jsx-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-lock-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-lock-duotone.svg new file mode 100644 index 0000000..0efafee --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-lock-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-magnifying-glass-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-magnifying-glass-duotone.svg new file mode 100644 index 0000000..62ccfff --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-magnifying-glass-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-md-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-md-duotone.svg new file mode 100644 index 0000000..1d9eaa6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-md-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-minus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-minus-duotone.svg new file mode 100644 index 0000000..8c9ea08 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-minus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-pdf-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-pdf-duotone.svg new file mode 100644 index 0000000..5f3e46e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-pdf-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-plus-duotone.svg new file mode 100644 index 0000000..a3b800d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-png-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-png-duotone.svg new file mode 100644 index 0000000..8a726e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-png-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-ppt-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-ppt-duotone.svg new file mode 100644 index 0000000..7721199 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-ppt-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-py-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-py-duotone.svg new file mode 100644 index 0000000..46f6181 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-py-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-rs-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-rs-duotone.svg new file mode 100644 index 0000000..26b3b8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-rs-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-sql-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-sql-duotone.svg new file mode 100644 index 0000000..9592632 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-sql-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-svg-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-svg-duotone.svg new file mode 100644 index 0000000..6de2939 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-svg-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-text-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-text-duotone.svg new file mode 100644 index 0000000..daff55d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-text-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-ts-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-ts-duotone.svg new file mode 100644 index 0000000..54695af --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-ts-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-tsx-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-tsx-duotone.svg new file mode 100644 index 0000000..e80d2a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-tsx-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-txt-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-txt-duotone.svg new file mode 100644 index 0000000..58a23ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-txt-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-video-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-video-duotone.svg new file mode 100644 index 0000000..e998840 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-video-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-vue-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-vue-duotone.svg new file mode 100644 index 0000000..5bba74d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-vue-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-x-duotone.svg new file mode 100644 index 0000000..259f7ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-xls-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-xls-duotone.svg new file mode 100644 index 0000000..47ac106 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-xls-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/file-zip-duotone.svg b/phosphor_orig/SVGs Flat/duotone/file-zip-duotone.svg new file mode 100644 index 0000000..88f333b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/file-zip-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/files-duotone.svg b/phosphor_orig/SVGs Flat/duotone/files-duotone.svg new file mode 100644 index 0000000..b251f28 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/files-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/film-reel-duotone.svg b/phosphor_orig/SVGs Flat/duotone/film-reel-duotone.svg new file mode 100644 index 0000000..1f54363 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/film-reel-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/film-script-duotone.svg b/phosphor_orig/SVGs Flat/duotone/film-script-duotone.svg new file mode 100644 index 0000000..5e74ab6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/film-script-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/film-slate-duotone.svg b/phosphor_orig/SVGs Flat/duotone/film-slate-duotone.svg new file mode 100644 index 0000000..976989f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/film-slate-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/film-strip-duotone.svg b/phosphor_orig/SVGs Flat/duotone/film-strip-duotone.svg new file mode 100644 index 0000000..a503912 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/film-strip-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/fingerprint-duotone.svg b/phosphor_orig/SVGs Flat/duotone/fingerprint-duotone.svg new file mode 100644 index 0000000..26b479c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/fingerprint-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/fingerprint-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/fingerprint-simple-duotone.svg new file mode 100644 index 0000000..292b232 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/fingerprint-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/finn-the-human-duotone.svg b/phosphor_orig/SVGs Flat/duotone/finn-the-human-duotone.svg new file mode 100644 index 0000000..b2fc9b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/finn-the-human-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/fire-duotone.svg b/phosphor_orig/SVGs Flat/duotone/fire-duotone.svg new file mode 100644 index 0000000..fac20c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/fire-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/fire-extinguisher-duotone.svg b/phosphor_orig/SVGs Flat/duotone/fire-extinguisher-duotone.svg new file mode 100644 index 0000000..f8811d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/fire-extinguisher-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/fire-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/fire-simple-duotone.svg new file mode 100644 index 0000000..e5542d0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/fire-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/fire-truck-duotone.svg b/phosphor_orig/SVGs Flat/duotone/fire-truck-duotone.svg new file mode 100644 index 0000000..77be218 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/fire-truck-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/first-aid-duotone.svg b/phosphor_orig/SVGs Flat/duotone/first-aid-duotone.svg new file mode 100644 index 0000000..17457f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/first-aid-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/first-aid-kit-duotone.svg b/phosphor_orig/SVGs Flat/duotone/first-aid-kit-duotone.svg new file mode 100644 index 0000000..cff546a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/first-aid-kit-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/fish-duotone.svg b/phosphor_orig/SVGs Flat/duotone/fish-duotone.svg new file mode 100644 index 0000000..2d28628 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/fish-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/fish-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/fish-simple-duotone.svg new file mode 100644 index 0000000..62f60cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/fish-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/flag-banner-duotone.svg b/phosphor_orig/SVGs Flat/duotone/flag-banner-duotone.svg new file mode 100644 index 0000000..84dd573 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/flag-banner-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/flag-banner-fold-duotone.svg b/phosphor_orig/SVGs Flat/duotone/flag-banner-fold-duotone.svg new file mode 100644 index 0000000..94d1795 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/flag-banner-fold-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/flag-checkered-duotone.svg b/phosphor_orig/SVGs Flat/duotone/flag-checkered-duotone.svg new file mode 100644 index 0000000..2c7d3fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/flag-checkered-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/flag-duotone.svg b/phosphor_orig/SVGs Flat/duotone/flag-duotone.svg new file mode 100644 index 0000000..aace0c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/flag-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/flag-pennant-duotone.svg b/phosphor_orig/SVGs Flat/duotone/flag-pennant-duotone.svg new file mode 100644 index 0000000..23c3d3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/flag-pennant-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/flame-duotone.svg b/phosphor_orig/SVGs Flat/duotone/flame-duotone.svg new file mode 100644 index 0000000..505d502 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/flame-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/flashlight-duotone.svg b/phosphor_orig/SVGs Flat/duotone/flashlight-duotone.svg new file mode 100644 index 0000000..d951ea7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/flashlight-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/flask-duotone.svg b/phosphor_orig/SVGs Flat/duotone/flask-duotone.svg new file mode 100644 index 0000000..510ebc1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/flask-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/flip-horizontal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/flip-horizontal-duotone.svg new file mode 100644 index 0000000..c00c065 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/flip-horizontal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/flip-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/flip-vertical-duotone.svg new file mode 100644 index 0000000..e8016c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/flip-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/floppy-disk-back-duotone.svg b/phosphor_orig/SVGs Flat/duotone/floppy-disk-back-duotone.svg new file mode 100644 index 0000000..59fa2de --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/floppy-disk-back-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/floppy-disk-duotone.svg b/phosphor_orig/SVGs Flat/duotone/floppy-disk-duotone.svg new file mode 100644 index 0000000..1cc908e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/floppy-disk-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/flow-arrow-duotone.svg b/phosphor_orig/SVGs Flat/duotone/flow-arrow-duotone.svg new file mode 100644 index 0000000..493af96 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/flow-arrow-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/flower-duotone.svg b/phosphor_orig/SVGs Flat/duotone/flower-duotone.svg new file mode 100644 index 0000000..3bf8cdc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/flower-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/flower-lotus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/flower-lotus-duotone.svg new file mode 100644 index 0000000..015b30a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/flower-lotus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/flower-tulip-duotone.svg b/phosphor_orig/SVGs Flat/duotone/flower-tulip-duotone.svg new file mode 100644 index 0000000..42df4bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/flower-tulip-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/flying-saucer-duotone.svg b/phosphor_orig/SVGs Flat/duotone/flying-saucer-duotone.svg new file mode 100644 index 0000000..aa84197 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/flying-saucer-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folder-dashed-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folder-dashed-duotone.svg new file mode 100644 index 0000000..6c6e0d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folder-dashed-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folder-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folder-duotone.svg new file mode 100644 index 0000000..1865dd2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folder-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folder-lock-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folder-lock-duotone.svg new file mode 100644 index 0000000..a523a4b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folder-lock-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folder-minus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folder-minus-duotone.svg new file mode 100644 index 0000000..c10d606 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folder-minus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folder-open-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folder-open-duotone.svg new file mode 100644 index 0000000..f9c34a8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folder-open-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folder-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folder-plus-duotone.svg new file mode 100644 index 0000000..ac4194a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folder-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folder-simple-dashed-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folder-simple-dashed-duotone.svg new file mode 100644 index 0000000..1c59e0d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folder-simple-dashed-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folder-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folder-simple-duotone.svg new file mode 100644 index 0000000..bc64afb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folder-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folder-simple-lock-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folder-simple-lock-duotone.svg new file mode 100644 index 0000000..8ede157 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folder-simple-lock-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folder-simple-minus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folder-simple-minus-duotone.svg new file mode 100644 index 0000000..a6995b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folder-simple-minus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folder-simple-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folder-simple-plus-duotone.svg new file mode 100644 index 0000000..10089e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folder-simple-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folder-simple-star-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folder-simple-star-duotone.svg new file mode 100644 index 0000000..99dd952 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folder-simple-star-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folder-simple-user-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folder-simple-user-duotone.svg new file mode 100644 index 0000000..239e45d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folder-simple-user-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folder-star-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folder-star-duotone.svg new file mode 100644 index 0000000..aa2743f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folder-star-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folder-user-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folder-user-duotone.svg new file mode 100644 index 0000000..958036f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folder-user-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/folders-duotone.svg b/phosphor_orig/SVGs Flat/duotone/folders-duotone.svg new file mode 100644 index 0000000..0a5d49e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/folders-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/football-duotone.svg b/phosphor_orig/SVGs Flat/duotone/football-duotone.svg new file mode 100644 index 0000000..6e4c0bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/football-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/football-helmet-duotone.svg b/phosphor_orig/SVGs Flat/duotone/football-helmet-duotone.svg new file mode 100644 index 0000000..3802bb8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/football-helmet-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/footprints-duotone.svg b/phosphor_orig/SVGs Flat/duotone/footprints-duotone.svg new file mode 100644 index 0000000..a53e47e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/footprints-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/fork-knife-duotone.svg b/phosphor_orig/SVGs Flat/duotone/fork-knife-duotone.svg new file mode 100644 index 0000000..26ad049 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/fork-knife-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/four-k-duotone.svg b/phosphor_orig/SVGs Flat/duotone/four-k-duotone.svg new file mode 100644 index 0000000..59f760f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/four-k-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/frame-corners-duotone.svg b/phosphor_orig/SVGs Flat/duotone/frame-corners-duotone.svg new file mode 100644 index 0000000..4cd965e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/frame-corners-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/framer-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/framer-logo-duotone.svg new file mode 100644 index 0000000..bac42bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/framer-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/function-duotone.svg b/phosphor_orig/SVGs Flat/duotone/function-duotone.svg new file mode 100644 index 0000000..81b976b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/function-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/funnel-duotone.svg b/phosphor_orig/SVGs Flat/duotone/funnel-duotone.svg new file mode 100644 index 0000000..f1f3ee7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/funnel-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/funnel-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/funnel-simple-duotone.svg new file mode 100644 index 0000000..97969ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/funnel-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/funnel-simple-x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/funnel-simple-x-duotone.svg new file mode 100644 index 0000000..7ab1606 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/funnel-simple-x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/funnel-x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/funnel-x-duotone.svg new file mode 100644 index 0000000..fdd282e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/funnel-x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/game-controller-duotone.svg b/phosphor_orig/SVGs Flat/duotone/game-controller-duotone.svg new file mode 100644 index 0000000..bf6f22f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/game-controller-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/garage-duotone.svg b/phosphor_orig/SVGs Flat/duotone/garage-duotone.svg new file mode 100644 index 0000000..285691a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/garage-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gas-can-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gas-can-duotone.svg new file mode 100644 index 0000000..9315852 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gas-can-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gas-pump-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gas-pump-duotone.svg new file mode 100644 index 0000000..8d5dd99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gas-pump-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gauge-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gauge-duotone.svg new file mode 100644 index 0000000..fb597f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gauge-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gavel-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gavel-duotone.svg new file mode 100644 index 0000000..6908088 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gavel-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gear-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gear-duotone.svg new file mode 100644 index 0000000..421e65f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gear-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gear-fine-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gear-fine-duotone.svg new file mode 100644 index 0000000..976d23a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gear-fine-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gear-six-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gear-six-duotone.svg new file mode 100644 index 0000000..030bc0b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gear-six-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gender-female-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gender-female-duotone.svg new file mode 100644 index 0000000..3a2b6a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gender-female-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gender-intersex-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gender-intersex-duotone.svg new file mode 100644 index 0000000..96aafe1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gender-intersex-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gender-male-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gender-male-duotone.svg new file mode 100644 index 0000000..e34458c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gender-male-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gender-neuter-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gender-neuter-duotone.svg new file mode 100644 index 0000000..b704d42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gender-neuter-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gender-nonbinary-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gender-nonbinary-duotone.svg new file mode 100644 index 0000000..17921a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gender-nonbinary-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gender-transgender-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gender-transgender-duotone.svg new file mode 100644 index 0000000..8d0ef22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gender-transgender-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/ghost-duotone.svg b/phosphor_orig/SVGs Flat/duotone/ghost-duotone.svg new file mode 100644 index 0000000..997bddc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/ghost-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gif-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gif-duotone.svg new file mode 100644 index 0000000..ba6bccc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gif-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gift-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gift-duotone.svg new file mode 100644 index 0000000..09dee5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gift-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/git-branch-duotone.svg b/phosphor_orig/SVGs Flat/duotone/git-branch-duotone.svg new file mode 100644 index 0000000..7339258 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/git-branch-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/git-commit-duotone.svg b/phosphor_orig/SVGs Flat/duotone/git-commit-duotone.svg new file mode 100644 index 0000000..cedd42e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/git-commit-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/git-diff-duotone.svg b/phosphor_orig/SVGs Flat/duotone/git-diff-duotone.svg new file mode 100644 index 0000000..9236bcc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/git-diff-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/git-fork-duotone.svg b/phosphor_orig/SVGs Flat/duotone/git-fork-duotone.svg new file mode 100644 index 0000000..3877c14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/git-fork-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/git-merge-duotone.svg b/phosphor_orig/SVGs Flat/duotone/git-merge-duotone.svg new file mode 100644 index 0000000..e5e3f73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/git-merge-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/git-pull-request-duotone.svg b/phosphor_orig/SVGs Flat/duotone/git-pull-request-duotone.svg new file mode 100644 index 0000000..3a2d0c6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/git-pull-request-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/github-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/github-logo-duotone.svg new file mode 100644 index 0000000..cb25db2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/github-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gitlab-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gitlab-logo-duotone.svg new file mode 100644 index 0000000..aa8b530 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gitlab-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gitlab-logo-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gitlab-logo-simple-duotone.svg new file mode 100644 index 0000000..4dee248 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gitlab-logo-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/globe-duotone.svg b/phosphor_orig/SVGs Flat/duotone/globe-duotone.svg new file mode 100644 index 0000000..83497b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/globe-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/globe-hemisphere-east-duotone.svg b/phosphor_orig/SVGs Flat/duotone/globe-hemisphere-east-duotone.svg new file mode 100644 index 0000000..7a166ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/globe-hemisphere-east-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/globe-hemisphere-west-duotone.svg b/phosphor_orig/SVGs Flat/duotone/globe-hemisphere-west-duotone.svg new file mode 100644 index 0000000..6fd1f04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/globe-hemisphere-west-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/globe-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/globe-simple-duotone.svg new file mode 100644 index 0000000..5e7d621 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/globe-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/globe-simple-x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/globe-simple-x-duotone.svg new file mode 100644 index 0000000..c441b7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/globe-simple-x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/globe-stand-duotone.svg b/phosphor_orig/SVGs Flat/duotone/globe-stand-duotone.svg new file mode 100644 index 0000000..e92ce14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/globe-stand-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/globe-x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/globe-x-duotone.svg new file mode 100644 index 0000000..88665e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/globe-x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/goggles-duotone.svg b/phosphor_orig/SVGs Flat/duotone/goggles-duotone.svg new file mode 100644 index 0000000..a3f789e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/goggles-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/golf-duotone.svg b/phosphor_orig/SVGs Flat/duotone/golf-duotone.svg new file mode 100644 index 0000000..85eb2bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/golf-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/goodreads-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/goodreads-logo-duotone.svg new file mode 100644 index 0000000..cca771e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/goodreads-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/google-cardboard-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/google-cardboard-logo-duotone.svg new file mode 100644 index 0000000..8358dee --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/google-cardboard-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/google-chrome-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/google-chrome-logo-duotone.svg new file mode 100644 index 0000000..4829ad4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/google-chrome-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/google-drive-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/google-drive-logo-duotone.svg new file mode 100644 index 0000000..29f1ba7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/google-drive-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/google-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/google-logo-duotone.svg new file mode 100644 index 0000000..987c4bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/google-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/google-photos-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/google-photos-logo-duotone.svg new file mode 100644 index 0000000..f6b3d04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/google-photos-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/google-play-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/google-play-logo-duotone.svg new file mode 100644 index 0000000..36ae978 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/google-play-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/google-podcasts-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/google-podcasts-logo-duotone.svg new file mode 100644 index 0000000..fd325be --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/google-podcasts-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gps-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gps-duotone.svg new file mode 100644 index 0000000..4e56fd9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gps-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gps-fix-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gps-fix-duotone.svg new file mode 100644 index 0000000..c28c428 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gps-fix-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gps-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gps-slash-duotone.svg new file mode 100644 index 0000000..5b3ec57 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gps-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/gradient-duotone.svg b/phosphor_orig/SVGs Flat/duotone/gradient-duotone.svg new file mode 100644 index 0000000..1e8cc75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/gradient-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/graduation-cap-duotone.svg b/phosphor_orig/SVGs Flat/duotone/graduation-cap-duotone.svg new file mode 100644 index 0000000..e9936c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/graduation-cap-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/grains-duotone.svg b/phosphor_orig/SVGs Flat/duotone/grains-duotone.svg new file mode 100644 index 0000000..ac76e68 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/grains-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/grains-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/grains-slash-duotone.svg new file mode 100644 index 0000000..6d4dc48 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/grains-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/graph-duotone.svg b/phosphor_orig/SVGs Flat/duotone/graph-duotone.svg new file mode 100644 index 0000000..974f46a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/graph-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/graphics-card-duotone.svg b/phosphor_orig/SVGs Flat/duotone/graphics-card-duotone.svg new file mode 100644 index 0000000..010f45e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/graphics-card-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/greater-than-duotone.svg b/phosphor_orig/SVGs Flat/duotone/greater-than-duotone.svg new file mode 100644 index 0000000..05e6dfc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/greater-than-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/greater-than-or-equal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/greater-than-or-equal-duotone.svg new file mode 100644 index 0000000..1dc5755 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/greater-than-or-equal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/grid-four-duotone.svg b/phosphor_orig/SVGs Flat/duotone/grid-four-duotone.svg new file mode 100644 index 0000000..3792c53 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/grid-four-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/grid-nine-duotone.svg b/phosphor_orig/SVGs Flat/duotone/grid-nine-duotone.svg new file mode 100644 index 0000000..72b394a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/grid-nine-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/guitar-duotone.svg b/phosphor_orig/SVGs Flat/duotone/guitar-duotone.svg new file mode 100644 index 0000000..ca44683 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/guitar-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hair-dryer-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hair-dryer-duotone.svg new file mode 100644 index 0000000..1c71e06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hair-dryer-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hamburger-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hamburger-duotone.svg new file mode 100644 index 0000000..6672f78 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hamburger-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hammer-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hammer-duotone.svg new file mode 100644 index 0000000..5d96989 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hammer-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-arrow-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-arrow-down-duotone.svg new file mode 100644 index 0000000..be13bdd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-arrow-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-arrow-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-arrow-up-duotone.svg new file mode 100644 index 0000000..13b982e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-arrow-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-coins-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-coins-duotone.svg new file mode 100644 index 0000000..ffa8060 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-coins-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-deposit-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-deposit-duotone.svg new file mode 100644 index 0000000..49353d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-deposit-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-duotone.svg new file mode 100644 index 0000000..41a19ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-eye-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-eye-duotone.svg new file mode 100644 index 0000000..b480d93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-eye-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-fist-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-fist-duotone.svg new file mode 100644 index 0000000..dd39fa2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-fist-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-grabbing-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-grabbing-duotone.svg new file mode 100644 index 0000000..15f2745 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-grabbing-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-heart-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-heart-duotone.svg new file mode 100644 index 0000000..e5a227e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-heart-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-palm-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-palm-duotone.svg new file mode 100644 index 0000000..cf9e366 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-palm-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-peace-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-peace-duotone.svg new file mode 100644 index 0000000..ae0d87c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-peace-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-pointing-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-pointing-duotone.svg new file mode 100644 index 0000000..76ecaf3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-pointing-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-soap-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-soap-duotone.svg new file mode 100644 index 0000000..7126d89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-soap-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-swipe-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-swipe-left-duotone.svg new file mode 100644 index 0000000..ad271c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-swipe-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-swipe-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-swipe-right-duotone.svg new file mode 100644 index 0000000..942d403 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-swipe-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-tap-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-tap-duotone.svg new file mode 100644 index 0000000..8fe7a39 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-tap-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-waving-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-waving-duotone.svg new file mode 100644 index 0000000..e67b97a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-waving-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hand-withdraw-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hand-withdraw-duotone.svg new file mode 100644 index 0000000..4a4cf6e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hand-withdraw-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/handbag-duotone.svg b/phosphor_orig/SVGs Flat/duotone/handbag-duotone.svg new file mode 100644 index 0000000..e596613 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/handbag-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/handbag-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/handbag-simple-duotone.svg new file mode 100644 index 0000000..e4cc0b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/handbag-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hands-clapping-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hands-clapping-duotone.svg new file mode 100644 index 0000000..bd24dea --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hands-clapping-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hands-praying-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hands-praying-duotone.svg new file mode 100644 index 0000000..f3b0140 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hands-praying-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/handshake-duotone.svg b/phosphor_orig/SVGs Flat/duotone/handshake-duotone.svg new file mode 100644 index 0000000..bd43838 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/handshake-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hard-drive-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hard-drive-duotone.svg new file mode 100644 index 0000000..37a4f7b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hard-drive-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hard-drives-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hard-drives-duotone.svg new file mode 100644 index 0000000..41db986 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hard-drives-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hard-hat-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hard-hat-duotone.svg new file mode 100644 index 0000000..d3740ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hard-hat-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hash-duotone.svg new file mode 100644 index 0000000..4cf1250 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hash-straight-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hash-straight-duotone.svg new file mode 100644 index 0000000..21927e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hash-straight-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/head-circuit-duotone.svg b/phosphor_orig/SVGs Flat/duotone/head-circuit-duotone.svg new file mode 100644 index 0000000..90d491a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/head-circuit-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/headlights-duotone.svg b/phosphor_orig/SVGs Flat/duotone/headlights-duotone.svg new file mode 100644 index 0000000..0de6945 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/headlights-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/headphones-duotone.svg b/phosphor_orig/SVGs Flat/duotone/headphones-duotone.svg new file mode 100644 index 0000000..ac07fd4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/headphones-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/headset-duotone.svg b/phosphor_orig/SVGs Flat/duotone/headset-duotone.svg new file mode 100644 index 0000000..41ad5e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/headset-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/heart-break-duotone.svg b/phosphor_orig/SVGs Flat/duotone/heart-break-duotone.svg new file mode 100644 index 0000000..7743d82 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/heart-break-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/heart-duotone.svg b/phosphor_orig/SVGs Flat/duotone/heart-duotone.svg new file mode 100644 index 0000000..cddd586 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/heart-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/heart-half-duotone.svg b/phosphor_orig/SVGs Flat/duotone/heart-half-duotone.svg new file mode 100644 index 0000000..245994b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/heart-half-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/heart-straight-break-duotone.svg b/phosphor_orig/SVGs Flat/duotone/heart-straight-break-duotone.svg new file mode 100644 index 0000000..68453fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/heart-straight-break-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/heart-straight-duotone.svg b/phosphor_orig/SVGs Flat/duotone/heart-straight-duotone.svg new file mode 100644 index 0000000..b52b1e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/heart-straight-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/heartbeat-duotone.svg b/phosphor_orig/SVGs Flat/duotone/heartbeat-duotone.svg new file mode 100644 index 0000000..a3518fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/heartbeat-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hexagon-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hexagon-duotone.svg new file mode 100644 index 0000000..f0f3c67 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hexagon-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/high-definition-duotone.svg b/phosphor_orig/SVGs Flat/duotone/high-definition-duotone.svg new file mode 100644 index 0000000..a4cfd42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/high-definition-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/high-heel-duotone.svg b/phosphor_orig/SVGs Flat/duotone/high-heel-duotone.svg new file mode 100644 index 0000000..ce45073 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/high-heel-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/highlighter-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/highlighter-circle-duotone.svg new file mode 100644 index 0000000..a9829f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/highlighter-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/highlighter-duotone.svg b/phosphor_orig/SVGs Flat/duotone/highlighter-duotone.svg new file mode 100644 index 0000000..fd0f49c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/highlighter-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hockey-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hockey-duotone.svg new file mode 100644 index 0000000..5e369c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hockey-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hoodie-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hoodie-duotone.svg new file mode 100644 index 0000000..dca8e9c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hoodie-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/horse-duotone.svg b/phosphor_orig/SVGs Flat/duotone/horse-duotone.svg new file mode 100644 index 0000000..437159a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/horse-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hospital-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hospital-duotone.svg new file mode 100644 index 0000000..cecd21e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hospital-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hourglass-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hourglass-duotone.svg new file mode 100644 index 0000000..fa81373 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hourglass-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hourglass-high-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hourglass-high-duotone.svg new file mode 100644 index 0000000..a13454c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hourglass-high-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hourglass-low-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hourglass-low-duotone.svg new file mode 100644 index 0000000..57774f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hourglass-low-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hourglass-medium-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hourglass-medium-duotone.svg new file mode 100644 index 0000000..0f665de --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hourglass-medium-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hourglass-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hourglass-simple-duotone.svg new file mode 100644 index 0000000..782d961 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hourglass-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hourglass-simple-high-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hourglass-simple-high-duotone.svg new file mode 100644 index 0000000..e7d9456 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hourglass-simple-high-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hourglass-simple-low-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hourglass-simple-low-duotone.svg new file mode 100644 index 0000000..66c286b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hourglass-simple-low-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hourglass-simple-medium-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hourglass-simple-medium-duotone.svg new file mode 100644 index 0000000..16ac251 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hourglass-simple-medium-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/house-duotone.svg b/phosphor_orig/SVGs Flat/duotone/house-duotone.svg new file mode 100644 index 0000000..3ff860f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/house-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/house-line-duotone.svg b/phosphor_orig/SVGs Flat/duotone/house-line-duotone.svg new file mode 100644 index 0000000..e0c71b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/house-line-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/house-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/house-simple-duotone.svg new file mode 100644 index 0000000..98e1dda --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/house-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/hurricane-duotone.svg b/phosphor_orig/SVGs Flat/duotone/hurricane-duotone.svg new file mode 100644 index 0000000..239fead --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/hurricane-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/ice-cream-duotone.svg b/phosphor_orig/SVGs Flat/duotone/ice-cream-duotone.svg new file mode 100644 index 0000000..b1353f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/ice-cream-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/identification-badge-duotone.svg b/phosphor_orig/SVGs Flat/duotone/identification-badge-duotone.svg new file mode 100644 index 0000000..6fe3ed3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/identification-badge-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/identification-card-duotone.svg b/phosphor_orig/SVGs Flat/duotone/identification-card-duotone.svg new file mode 100644 index 0000000..47940e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/identification-card-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/image-broken-duotone.svg b/phosphor_orig/SVGs Flat/duotone/image-broken-duotone.svg new file mode 100644 index 0000000..89f6ded --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/image-broken-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/image-duotone.svg b/phosphor_orig/SVGs Flat/duotone/image-duotone.svg new file mode 100644 index 0000000..3dfd854 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/image-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/image-square-duotone.svg b/phosphor_orig/SVGs Flat/duotone/image-square-duotone.svg new file mode 100644 index 0000000..a3a9bcf --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/image-square-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/images-duotone.svg b/phosphor_orig/SVGs Flat/duotone/images-duotone.svg new file mode 100644 index 0000000..66f8663 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/images-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/images-square-duotone.svg b/phosphor_orig/SVGs Flat/duotone/images-square-duotone.svg new file mode 100644 index 0000000..404a1d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/images-square-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/infinity-duotone.svg b/phosphor_orig/SVGs Flat/duotone/infinity-duotone.svg new file mode 100644 index 0000000..33eba3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/infinity-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/info-duotone.svg b/phosphor_orig/SVGs Flat/duotone/info-duotone.svg new file mode 100644 index 0000000..ff8b69f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/info-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/instagram-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/instagram-logo-duotone.svg new file mode 100644 index 0000000..05a986e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/instagram-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/intersect-duotone.svg b/phosphor_orig/SVGs Flat/duotone/intersect-duotone.svg new file mode 100644 index 0000000..b79cc3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/intersect-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/intersect-square-duotone.svg b/phosphor_orig/SVGs Flat/duotone/intersect-square-duotone.svg new file mode 100644 index 0000000..f71db76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/intersect-square-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/intersect-three-duotone.svg b/phosphor_orig/SVGs Flat/duotone/intersect-three-duotone.svg new file mode 100644 index 0000000..c620a56 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/intersect-three-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/intersection-duotone.svg b/phosphor_orig/SVGs Flat/duotone/intersection-duotone.svg new file mode 100644 index 0000000..1bc1356 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/intersection-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/invoice-duotone.svg b/phosphor_orig/SVGs Flat/duotone/invoice-duotone.svg new file mode 100644 index 0000000..2bcfd3d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/invoice-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/island-duotone.svg b/phosphor_orig/SVGs Flat/duotone/island-duotone.svg new file mode 100644 index 0000000..c462516 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/island-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/jar-duotone.svg b/phosphor_orig/SVGs Flat/duotone/jar-duotone.svg new file mode 100644 index 0000000..3cf219a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/jar-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/jar-label-duotone.svg b/phosphor_orig/SVGs Flat/duotone/jar-label-duotone.svg new file mode 100644 index 0000000..579ebb4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/jar-label-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/jeep-duotone.svg b/phosphor_orig/SVGs Flat/duotone/jeep-duotone.svg new file mode 100644 index 0000000..1c41b35 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/jeep-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/joystick-duotone.svg b/phosphor_orig/SVGs Flat/duotone/joystick-duotone.svg new file mode 100644 index 0000000..246dab8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/joystick-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/kanban-duotone.svg b/phosphor_orig/SVGs Flat/duotone/kanban-duotone.svg new file mode 100644 index 0000000..14b679f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/kanban-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/key-duotone.svg b/phosphor_orig/SVGs Flat/duotone/key-duotone.svg new file mode 100644 index 0000000..7dc84a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/key-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/key-return-duotone.svg b/phosphor_orig/SVGs Flat/duotone/key-return-duotone.svg new file mode 100644 index 0000000..8369cb8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/key-return-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/keyboard-duotone.svg b/phosphor_orig/SVGs Flat/duotone/keyboard-duotone.svg new file mode 100644 index 0000000..f317b76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/keyboard-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/keyhole-duotone.svg b/phosphor_orig/SVGs Flat/duotone/keyhole-duotone.svg new file mode 100644 index 0000000..326905a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/keyhole-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/knife-duotone.svg b/phosphor_orig/SVGs Flat/duotone/knife-duotone.svg new file mode 100644 index 0000000..d6f541e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/knife-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/ladder-duotone.svg b/phosphor_orig/SVGs Flat/duotone/ladder-duotone.svg new file mode 100644 index 0000000..fe93beb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/ladder-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/ladder-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/ladder-simple-duotone.svg new file mode 100644 index 0000000..5a0b7c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/ladder-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lamp-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lamp-duotone.svg new file mode 100644 index 0000000..b6e9d3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lamp-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lamp-pendant-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lamp-pendant-duotone.svg new file mode 100644 index 0000000..496b3ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lamp-pendant-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/laptop-duotone.svg b/phosphor_orig/SVGs Flat/duotone/laptop-duotone.svg new file mode 100644 index 0000000..d3b7ab4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/laptop-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lasso-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lasso-duotone.svg new file mode 100644 index 0000000..d7f669f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lasso-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lastfm-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lastfm-logo-duotone.svg new file mode 100644 index 0000000..69bde9f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lastfm-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/layout-duotone.svg b/phosphor_orig/SVGs Flat/duotone/layout-duotone.svg new file mode 100644 index 0000000..4be0fd3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/layout-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/leaf-duotone.svg b/phosphor_orig/SVGs Flat/duotone/leaf-duotone.svg new file mode 100644 index 0000000..b042f6a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/leaf-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lectern-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lectern-duotone.svg new file mode 100644 index 0000000..227678e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lectern-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lego-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lego-duotone.svg new file mode 100644 index 0000000..f2a1b61 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lego-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lego-smiley-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lego-smiley-duotone.svg new file mode 100644 index 0000000..f5af156 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lego-smiley-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/less-than-duotone.svg b/phosphor_orig/SVGs Flat/duotone/less-than-duotone.svg new file mode 100644 index 0000000..228dbcc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/less-than-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/less-than-or-equal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/less-than-or-equal-duotone.svg new file mode 100644 index 0000000..9a09086 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/less-than-or-equal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/letter-circle-h-duotone.svg b/phosphor_orig/SVGs Flat/duotone/letter-circle-h-duotone.svg new file mode 100644 index 0000000..c7299e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/letter-circle-h-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/letter-circle-p-duotone.svg b/phosphor_orig/SVGs Flat/duotone/letter-circle-p-duotone.svg new file mode 100644 index 0000000..e0a2f1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/letter-circle-p-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/letter-circle-v-duotone.svg b/phosphor_orig/SVGs Flat/duotone/letter-circle-v-duotone.svg new file mode 100644 index 0000000..3886d9d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/letter-circle-v-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lifebuoy-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lifebuoy-duotone.svg new file mode 100644 index 0000000..a38caef --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lifebuoy-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lightbulb-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lightbulb-duotone.svg new file mode 100644 index 0000000..d30ff15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lightbulb-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lightbulb-filament-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lightbulb-filament-duotone.svg new file mode 100644 index 0000000..74bb5e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lightbulb-filament-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lighthouse-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lighthouse-duotone.svg new file mode 100644 index 0000000..13d9673 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lighthouse-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lightning-a-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lightning-a-duotone.svg new file mode 100644 index 0000000..2926217 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lightning-a-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lightning-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lightning-duotone.svg new file mode 100644 index 0000000..d365754 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lightning-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lightning-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lightning-slash-duotone.svg new file mode 100644 index 0000000..a64544c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lightning-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/line-segment-duotone.svg b/phosphor_orig/SVGs Flat/duotone/line-segment-duotone.svg new file mode 100644 index 0000000..b3eca5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/line-segment-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/line-segments-duotone.svg b/phosphor_orig/SVGs Flat/duotone/line-segments-duotone.svg new file mode 100644 index 0000000..19d2f74 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/line-segments-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/line-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/line-vertical-duotone.svg new file mode 100644 index 0000000..61bc1b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/line-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/link-break-duotone.svg b/phosphor_orig/SVGs Flat/duotone/link-break-duotone.svg new file mode 100644 index 0000000..1dc5785 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/link-break-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/link-duotone.svg b/phosphor_orig/SVGs Flat/duotone/link-duotone.svg new file mode 100644 index 0000000..3296fd2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/link-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/link-simple-break-duotone.svg b/phosphor_orig/SVGs Flat/duotone/link-simple-break-duotone.svg new file mode 100644 index 0000000..213b238 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/link-simple-break-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/link-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/link-simple-duotone.svg new file mode 100644 index 0000000..c43e703 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/link-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/link-simple-horizontal-break-duotone.svg b/phosphor_orig/SVGs Flat/duotone/link-simple-horizontal-break-duotone.svg new file mode 100644 index 0000000..3a2a892 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/link-simple-horizontal-break-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/link-simple-horizontal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/link-simple-horizontal-duotone.svg new file mode 100644 index 0000000..405bd61 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/link-simple-horizontal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/linkedin-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/linkedin-logo-duotone.svg new file mode 100644 index 0000000..1d553eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/linkedin-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/linktree-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/linktree-logo-duotone.svg new file mode 100644 index 0000000..38e2959 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/linktree-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/linux-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/linux-logo-duotone.svg new file mode 100644 index 0000000..5cef6bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/linux-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/list-bullets-duotone.svg b/phosphor_orig/SVGs Flat/duotone/list-bullets-duotone.svg new file mode 100644 index 0000000..df3c2f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/list-bullets-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/list-checks-duotone.svg b/phosphor_orig/SVGs Flat/duotone/list-checks-duotone.svg new file mode 100644 index 0000000..11b385e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/list-checks-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/list-dashes-duotone.svg b/phosphor_orig/SVGs Flat/duotone/list-dashes-duotone.svg new file mode 100644 index 0000000..4b7e4a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/list-dashes-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/list-duotone.svg b/phosphor_orig/SVGs Flat/duotone/list-duotone.svg new file mode 100644 index 0000000..20459ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/list-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/list-heart-duotone.svg b/phosphor_orig/SVGs Flat/duotone/list-heart-duotone.svg new file mode 100644 index 0000000..1baf375 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/list-heart-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/list-magnifying-glass-duotone.svg b/phosphor_orig/SVGs Flat/duotone/list-magnifying-glass-duotone.svg new file mode 100644 index 0000000..01649b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/list-magnifying-glass-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/list-numbers-duotone.svg b/phosphor_orig/SVGs Flat/duotone/list-numbers-duotone.svg new file mode 100644 index 0000000..a9ca49f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/list-numbers-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/list-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/list-plus-duotone.svg new file mode 100644 index 0000000..5ea0c48 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/list-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/list-star-duotone.svg b/phosphor_orig/SVGs Flat/duotone/list-star-duotone.svg new file mode 100644 index 0000000..17941b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/list-star-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lock-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lock-duotone.svg new file mode 100644 index 0000000..67f18f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lock-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lock-key-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lock-key-duotone.svg new file mode 100644 index 0000000..a4c3f39 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lock-key-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lock-key-open-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lock-key-open-duotone.svg new file mode 100644 index 0000000..7d6399b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lock-key-open-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lock-laminated-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lock-laminated-duotone.svg new file mode 100644 index 0000000..8e8515b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lock-laminated-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lock-laminated-open-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lock-laminated-open-duotone.svg new file mode 100644 index 0000000..ba88ab8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lock-laminated-open-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lock-open-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lock-open-duotone.svg new file mode 100644 index 0000000..777fc78 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lock-open-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lock-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lock-simple-duotone.svg new file mode 100644 index 0000000..02bce2a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lock-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lock-simple-open-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lock-simple-open-duotone.svg new file mode 100644 index 0000000..60596fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lock-simple-open-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/lockers-duotone.svg b/phosphor_orig/SVGs Flat/duotone/lockers-duotone.svg new file mode 100644 index 0000000..9c8a047 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/lockers-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/log-duotone.svg b/phosphor_orig/SVGs Flat/duotone/log-duotone.svg new file mode 100644 index 0000000..0b4b459 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/log-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/magic-wand-duotone.svg b/phosphor_orig/SVGs Flat/duotone/magic-wand-duotone.svg new file mode 100644 index 0000000..5477e4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/magic-wand-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/magnet-duotone.svg b/phosphor_orig/SVGs Flat/duotone/magnet-duotone.svg new file mode 100644 index 0000000..45943c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/magnet-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/magnet-straight-duotone.svg b/phosphor_orig/SVGs Flat/duotone/magnet-straight-duotone.svg new file mode 100644 index 0000000..2f8a13f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/magnet-straight-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/magnifying-glass-duotone.svg b/phosphor_orig/SVGs Flat/duotone/magnifying-glass-duotone.svg new file mode 100644 index 0000000..10a6dc9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/magnifying-glass-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/magnifying-glass-minus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/magnifying-glass-minus-duotone.svg new file mode 100644 index 0000000..58e7736 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/magnifying-glass-minus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/magnifying-glass-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/magnifying-glass-plus-duotone.svg new file mode 100644 index 0000000..789ba0e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/magnifying-glass-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/mailbox-duotone.svg b/phosphor_orig/SVGs Flat/duotone/mailbox-duotone.svg new file mode 100644 index 0000000..ae79f11 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/mailbox-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/map-pin-area-duotone.svg b/phosphor_orig/SVGs Flat/duotone/map-pin-area-duotone.svg new file mode 100644 index 0000000..166426e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/map-pin-area-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/map-pin-duotone.svg b/phosphor_orig/SVGs Flat/duotone/map-pin-duotone.svg new file mode 100644 index 0000000..bb08181 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/map-pin-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/map-pin-line-duotone.svg b/phosphor_orig/SVGs Flat/duotone/map-pin-line-duotone.svg new file mode 100644 index 0000000..0635285 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/map-pin-line-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/map-pin-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/map-pin-plus-duotone.svg new file mode 100644 index 0000000..6d1c5f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/map-pin-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/map-pin-simple-area-duotone.svg b/phosphor_orig/SVGs Flat/duotone/map-pin-simple-area-duotone.svg new file mode 100644 index 0000000..9e2e5e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/map-pin-simple-area-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/map-pin-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/map-pin-simple-duotone.svg new file mode 100644 index 0000000..ddf083a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/map-pin-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/map-pin-simple-line-duotone.svg b/phosphor_orig/SVGs Flat/duotone/map-pin-simple-line-duotone.svg new file mode 100644 index 0000000..30e709b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/map-pin-simple-line-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/map-trifold-duotone.svg b/phosphor_orig/SVGs Flat/duotone/map-trifold-duotone.svg new file mode 100644 index 0000000..f5e265c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/map-trifold-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/markdown-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/markdown-logo-duotone.svg new file mode 100644 index 0000000..f8ef97d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/markdown-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/marker-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/marker-circle-duotone.svg new file mode 100644 index 0000000..23c6c46 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/marker-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/martini-duotone.svg b/phosphor_orig/SVGs Flat/duotone/martini-duotone.svg new file mode 100644 index 0000000..6f0916d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/martini-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/mask-happy-duotone.svg b/phosphor_orig/SVGs Flat/duotone/mask-happy-duotone.svg new file mode 100644 index 0000000..66680bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/mask-happy-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/mask-sad-duotone.svg b/phosphor_orig/SVGs Flat/duotone/mask-sad-duotone.svg new file mode 100644 index 0000000..2be70e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/mask-sad-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/mastodon-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/mastodon-logo-duotone.svg new file mode 100644 index 0000000..fe7e4ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/mastodon-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/math-operations-duotone.svg b/phosphor_orig/SVGs Flat/duotone/math-operations-duotone.svg new file mode 100644 index 0000000..84f3b76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/math-operations-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/matrix-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/matrix-logo-duotone.svg new file mode 100644 index 0000000..3877ddc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/matrix-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/medal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/medal-duotone.svg new file mode 100644 index 0000000..562c1c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/medal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/medal-military-duotone.svg b/phosphor_orig/SVGs Flat/duotone/medal-military-duotone.svg new file mode 100644 index 0000000..56d756e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/medal-military-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/medium-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/medium-logo-duotone.svg new file mode 100644 index 0000000..265af27 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/medium-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/megaphone-duotone.svg b/phosphor_orig/SVGs Flat/duotone/megaphone-duotone.svg new file mode 100644 index 0000000..e00bb3c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/megaphone-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/megaphone-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/megaphone-simple-duotone.svg new file mode 100644 index 0000000..d2019ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/megaphone-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/member-of-duotone.svg b/phosphor_orig/SVGs Flat/duotone/member-of-duotone.svg new file mode 100644 index 0000000..55ee399 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/member-of-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/memory-duotone.svg b/phosphor_orig/SVGs Flat/duotone/memory-duotone.svg new file mode 100644 index 0000000..840f864 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/memory-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/messenger-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/messenger-logo-duotone.svg new file mode 100644 index 0000000..8721f24 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/messenger-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/meta-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/meta-logo-duotone.svg new file mode 100644 index 0000000..cab411b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/meta-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/meteor-duotone.svg b/phosphor_orig/SVGs Flat/duotone/meteor-duotone.svg new file mode 100644 index 0000000..8cd75ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/meteor-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/metronome-duotone.svg b/phosphor_orig/SVGs Flat/duotone/metronome-duotone.svg new file mode 100644 index 0000000..ce29246 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/metronome-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/microphone-duotone.svg b/phosphor_orig/SVGs Flat/duotone/microphone-duotone.svg new file mode 100644 index 0000000..62dc725 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/microphone-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/microphone-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/microphone-slash-duotone.svg new file mode 100644 index 0000000..d3d7ecd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/microphone-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/microphone-stage-duotone.svg b/phosphor_orig/SVGs Flat/duotone/microphone-stage-duotone.svg new file mode 100644 index 0000000..066d4db --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/microphone-stage-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/microscope-duotone.svg b/phosphor_orig/SVGs Flat/duotone/microscope-duotone.svg new file mode 100644 index 0000000..a7b16bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/microscope-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/microsoft-excel-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/microsoft-excel-logo-duotone.svg new file mode 100644 index 0000000..f7812a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/microsoft-excel-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/microsoft-outlook-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/microsoft-outlook-logo-duotone.svg new file mode 100644 index 0000000..a2875f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/microsoft-outlook-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/microsoft-powerpoint-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/microsoft-powerpoint-logo-duotone.svg new file mode 100644 index 0000000..b547f1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/microsoft-powerpoint-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/microsoft-teams-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/microsoft-teams-logo-duotone.svg new file mode 100644 index 0000000..4e7e77e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/microsoft-teams-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/microsoft-word-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/microsoft-word-logo-duotone.svg new file mode 100644 index 0000000..6a18081 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/microsoft-word-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/minus-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/minus-circle-duotone.svg new file mode 100644 index 0000000..19cca2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/minus-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/minus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/minus-duotone.svg new file mode 100644 index 0000000..f47d92e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/minus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/minus-square-duotone.svg b/phosphor_orig/SVGs Flat/duotone/minus-square-duotone.svg new file mode 100644 index 0000000..e2926a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/minus-square-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/money-duotone.svg b/phosphor_orig/SVGs Flat/duotone/money-duotone.svg new file mode 100644 index 0000000..b1186e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/money-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/money-wavy-duotone.svg b/phosphor_orig/SVGs Flat/duotone/money-wavy-duotone.svg new file mode 100644 index 0000000..cc948ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/money-wavy-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/monitor-arrow-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/monitor-arrow-up-duotone.svg new file mode 100644 index 0000000..9868c9b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/monitor-arrow-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/monitor-duotone.svg b/phosphor_orig/SVGs Flat/duotone/monitor-duotone.svg new file mode 100644 index 0000000..e105ce5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/monitor-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/monitor-play-duotone.svg b/phosphor_orig/SVGs Flat/duotone/monitor-play-duotone.svg new file mode 100644 index 0000000..6a740ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/monitor-play-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/moon-duotone.svg b/phosphor_orig/SVGs Flat/duotone/moon-duotone.svg new file mode 100644 index 0000000..054a806 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/moon-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/moon-stars-duotone.svg b/phosphor_orig/SVGs Flat/duotone/moon-stars-duotone.svg new file mode 100644 index 0000000..98c6f90 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/moon-stars-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/moped-duotone.svg b/phosphor_orig/SVGs Flat/duotone/moped-duotone.svg new file mode 100644 index 0000000..b7376dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/moped-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/moped-front-duotone.svg b/phosphor_orig/SVGs Flat/duotone/moped-front-duotone.svg new file mode 100644 index 0000000..59d5e37 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/moped-front-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/mosque-duotone.svg b/phosphor_orig/SVGs Flat/duotone/mosque-duotone.svg new file mode 100644 index 0000000..bbf2a14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/mosque-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/motorcycle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/motorcycle-duotone.svg new file mode 100644 index 0000000..fcff57f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/motorcycle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/mountains-duotone.svg b/phosphor_orig/SVGs Flat/duotone/mountains-duotone.svg new file mode 100644 index 0000000..4f46018 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/mountains-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/mouse-duotone.svg b/phosphor_orig/SVGs Flat/duotone/mouse-duotone.svg new file mode 100644 index 0000000..fc9bd87 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/mouse-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/mouse-left-click-duotone.svg b/phosphor_orig/SVGs Flat/duotone/mouse-left-click-duotone.svg new file mode 100644 index 0000000..eef3506 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/mouse-left-click-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/mouse-middle-click-duotone.svg b/phosphor_orig/SVGs Flat/duotone/mouse-middle-click-duotone.svg new file mode 100644 index 0000000..101970c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/mouse-middle-click-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/mouse-right-click-duotone.svg b/phosphor_orig/SVGs Flat/duotone/mouse-right-click-duotone.svg new file mode 100644 index 0000000..e6c0e0a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/mouse-right-click-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/mouse-scroll-duotone.svg b/phosphor_orig/SVGs Flat/duotone/mouse-scroll-duotone.svg new file mode 100644 index 0000000..c8f19f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/mouse-scroll-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/mouse-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/mouse-simple-duotone.svg new file mode 100644 index 0000000..355eb26 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/mouse-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/music-note-duotone.svg b/phosphor_orig/SVGs Flat/duotone/music-note-duotone.svg new file mode 100644 index 0000000..b7ce2ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/music-note-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/music-note-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/music-note-simple-duotone.svg new file mode 100644 index 0000000..f5055b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/music-note-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/music-notes-duotone.svg b/phosphor_orig/SVGs Flat/duotone/music-notes-duotone.svg new file mode 100644 index 0000000..8319268 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/music-notes-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/music-notes-minus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/music-notes-minus-duotone.svg new file mode 100644 index 0000000..b88b7c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/music-notes-minus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/music-notes-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/music-notes-plus-duotone.svg new file mode 100644 index 0000000..91f634f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/music-notes-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/music-notes-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/music-notes-simple-duotone.svg new file mode 100644 index 0000000..ccbb48f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/music-notes-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/navigation-arrow-duotone.svg b/phosphor_orig/SVGs Flat/duotone/navigation-arrow-duotone.svg new file mode 100644 index 0000000..bd00e27 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/navigation-arrow-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/needle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/needle-duotone.svg new file mode 100644 index 0000000..8c7da47 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/needle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/network-duotone.svg b/phosphor_orig/SVGs Flat/duotone/network-duotone.svg new file mode 100644 index 0000000..1427a11 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/network-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/network-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/network-slash-duotone.svg new file mode 100644 index 0000000..2fd3b01 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/network-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/network-x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/network-x-duotone.svg new file mode 100644 index 0000000..5688f52 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/network-x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/newspaper-clipping-duotone.svg b/phosphor_orig/SVGs Flat/duotone/newspaper-clipping-duotone.svg new file mode 100644 index 0000000..25f0ea5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/newspaper-clipping-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/newspaper-duotone.svg b/phosphor_orig/SVGs Flat/duotone/newspaper-duotone.svg new file mode 100644 index 0000000..ed18438 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/newspaper-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/not-equals-duotone.svg b/phosphor_orig/SVGs Flat/duotone/not-equals-duotone.svg new file mode 100644 index 0000000..18befc2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/not-equals-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/not-member-of-duotone.svg b/phosphor_orig/SVGs Flat/duotone/not-member-of-duotone.svg new file mode 100644 index 0000000..34a0440 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/not-member-of-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/not-subset-of-duotone.svg b/phosphor_orig/SVGs Flat/duotone/not-subset-of-duotone.svg new file mode 100644 index 0000000..914e13e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/not-subset-of-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/not-superset-of-duotone.svg b/phosphor_orig/SVGs Flat/duotone/not-superset-of-duotone.svg new file mode 100644 index 0000000..2a6a972 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/not-superset-of-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/notches-duotone.svg b/phosphor_orig/SVGs Flat/duotone/notches-duotone.svg new file mode 100644 index 0000000..25bd6e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/notches-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/note-blank-duotone.svg b/phosphor_orig/SVGs Flat/duotone/note-blank-duotone.svg new file mode 100644 index 0000000..504e5a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/note-blank-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/note-duotone.svg b/phosphor_orig/SVGs Flat/duotone/note-duotone.svg new file mode 100644 index 0000000..4ffb1f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/note-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/note-pencil-duotone.svg b/phosphor_orig/SVGs Flat/duotone/note-pencil-duotone.svg new file mode 100644 index 0000000..0a531fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/note-pencil-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/notebook-duotone.svg b/phosphor_orig/SVGs Flat/duotone/notebook-duotone.svg new file mode 100644 index 0000000..62d06e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/notebook-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/notepad-duotone.svg b/phosphor_orig/SVGs Flat/duotone/notepad-duotone.svg new file mode 100644 index 0000000..70324d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/notepad-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/notification-duotone.svg b/phosphor_orig/SVGs Flat/duotone/notification-duotone.svg new file mode 100644 index 0000000..88d6054 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/notification-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/notion-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/notion-logo-duotone.svg new file mode 100644 index 0000000..44c6163 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/notion-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/nuclear-plant-duotone.svg b/phosphor_orig/SVGs Flat/duotone/nuclear-plant-duotone.svg new file mode 100644 index 0000000..d1223d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/nuclear-plant-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-circle-eight-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-circle-eight-duotone.svg new file mode 100644 index 0000000..373e87f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-circle-eight-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-circle-five-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-circle-five-duotone.svg new file mode 100644 index 0000000..690e6e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-circle-five-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-circle-four-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-circle-four-duotone.svg new file mode 100644 index 0000000..43a6138 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-circle-four-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-circle-nine-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-circle-nine-duotone.svg new file mode 100644 index 0000000..eb500fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-circle-nine-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-circle-one-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-circle-one-duotone.svg new file mode 100644 index 0000000..91df96b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-circle-one-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-circle-seven-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-circle-seven-duotone.svg new file mode 100644 index 0000000..c2b5df8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-circle-seven-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-circle-six-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-circle-six-duotone.svg new file mode 100644 index 0000000..d6aa235 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-circle-six-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-circle-three-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-circle-three-duotone.svg new file mode 100644 index 0000000..73a1b4b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-circle-three-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-circle-two-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-circle-two-duotone.svg new file mode 100644 index 0000000..1b0392e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-circle-two-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-circle-zero-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-circle-zero-duotone.svg new file mode 100644 index 0000000..96c0d6b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-circle-zero-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-eight-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-eight-duotone.svg new file mode 100644 index 0000000..f228668 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-eight-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-five-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-five-duotone.svg new file mode 100644 index 0000000..f978413 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-five-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-four-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-four-duotone.svg new file mode 100644 index 0000000..aacac34 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-four-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-nine-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-nine-duotone.svg new file mode 100644 index 0000000..d2caafe --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-nine-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-one-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-one-duotone.svg new file mode 100644 index 0000000..761c1b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-one-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-seven-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-seven-duotone.svg new file mode 100644 index 0000000..55a6a77 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-seven-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-six-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-six-duotone.svg new file mode 100644 index 0000000..638ea66 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-six-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-square-eight-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-square-eight-duotone.svg new file mode 100644 index 0000000..90fcedb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-square-eight-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-square-five-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-square-five-duotone.svg new file mode 100644 index 0000000..9fbe652 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-square-five-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-square-four-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-square-four-duotone.svg new file mode 100644 index 0000000..9ef2a97 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-square-four-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-square-nine-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-square-nine-duotone.svg new file mode 100644 index 0000000..ef7e57c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-square-nine-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-square-one-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-square-one-duotone.svg new file mode 100644 index 0000000..57dca5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-square-one-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-square-seven-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-square-seven-duotone.svg new file mode 100644 index 0000000..4ab2768 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-square-seven-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-square-six-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-square-six-duotone.svg new file mode 100644 index 0000000..2a66819 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-square-six-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-square-three-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-square-three-duotone.svg new file mode 100644 index 0000000..3f785a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-square-three-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-square-two-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-square-two-duotone.svg new file mode 100644 index 0000000..5d34c02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-square-two-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-square-zero-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-square-zero-duotone.svg new file mode 100644 index 0000000..e19475a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-square-zero-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-three-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-three-duotone.svg new file mode 100644 index 0000000..7a092e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-three-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-two-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-two-duotone.svg new file mode 100644 index 0000000..1ebccb4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-two-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/number-zero-duotone.svg b/phosphor_orig/SVGs Flat/duotone/number-zero-duotone.svg new file mode 100644 index 0000000..459bc0a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/number-zero-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/numpad-duotone.svg b/phosphor_orig/SVGs Flat/duotone/numpad-duotone.svg new file mode 100644 index 0000000..5c234f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/numpad-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/nut-duotone.svg b/phosphor_orig/SVGs Flat/duotone/nut-duotone.svg new file mode 100644 index 0000000..6389142 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/nut-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/ny-times-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/ny-times-logo-duotone.svg new file mode 100644 index 0000000..cd551f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/ny-times-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/octagon-duotone.svg b/phosphor_orig/SVGs Flat/duotone/octagon-duotone.svg new file mode 100644 index 0000000..dec7ad0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/octagon-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/office-chair-duotone.svg b/phosphor_orig/SVGs Flat/duotone/office-chair-duotone.svg new file mode 100644 index 0000000..a254146 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/office-chair-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/onigiri-duotone.svg b/phosphor_orig/SVGs Flat/duotone/onigiri-duotone.svg new file mode 100644 index 0000000..8e964ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/onigiri-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/open-ai-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/open-ai-logo-duotone.svg new file mode 100644 index 0000000..cf7680c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/open-ai-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/option-duotone.svg b/phosphor_orig/SVGs Flat/duotone/option-duotone.svg new file mode 100644 index 0000000..e6d8451 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/option-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/orange-duotone.svg b/phosphor_orig/SVGs Flat/duotone/orange-duotone.svg new file mode 100644 index 0000000..9229e34 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/orange-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/orange-slice-duotone.svg b/phosphor_orig/SVGs Flat/duotone/orange-slice-duotone.svg new file mode 100644 index 0000000..5c84a40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/orange-slice-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/oven-duotone.svg b/phosphor_orig/SVGs Flat/duotone/oven-duotone.svg new file mode 100644 index 0000000..20f8e80 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/oven-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/package-duotone.svg b/phosphor_orig/SVGs Flat/duotone/package-duotone.svg new file mode 100644 index 0000000..6e813d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/package-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/paint-brush-broad-duotone.svg b/phosphor_orig/SVGs Flat/duotone/paint-brush-broad-duotone.svg new file mode 100644 index 0000000..aad8922 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/paint-brush-broad-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/paint-brush-duotone.svg b/phosphor_orig/SVGs Flat/duotone/paint-brush-duotone.svg new file mode 100644 index 0000000..f27d41c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/paint-brush-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/paint-brush-household-duotone.svg b/phosphor_orig/SVGs Flat/duotone/paint-brush-household-duotone.svg new file mode 100644 index 0000000..8498b1f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/paint-brush-household-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/paint-bucket-duotone.svg b/phosphor_orig/SVGs Flat/duotone/paint-bucket-duotone.svg new file mode 100644 index 0000000..57e18e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/paint-bucket-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/paint-roller-duotone.svg b/phosphor_orig/SVGs Flat/duotone/paint-roller-duotone.svg new file mode 100644 index 0000000..65b2bf9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/paint-roller-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/palette-duotone.svg b/phosphor_orig/SVGs Flat/duotone/palette-duotone.svg new file mode 100644 index 0000000..c9408c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/palette-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/panorama-duotone.svg b/phosphor_orig/SVGs Flat/duotone/panorama-duotone.svg new file mode 100644 index 0000000..4e30e43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/panorama-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pants-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pants-duotone.svg new file mode 100644 index 0000000..c65cfef --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pants-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/paper-plane-duotone.svg b/phosphor_orig/SVGs Flat/duotone/paper-plane-duotone.svg new file mode 100644 index 0000000..5cc16ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/paper-plane-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/paper-plane-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/paper-plane-right-duotone.svg new file mode 100644 index 0000000..30312e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/paper-plane-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/paper-plane-tilt-duotone.svg b/phosphor_orig/SVGs Flat/duotone/paper-plane-tilt-duotone.svg new file mode 100644 index 0000000..0e5575e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/paper-plane-tilt-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/paperclip-duotone.svg b/phosphor_orig/SVGs Flat/duotone/paperclip-duotone.svg new file mode 100644 index 0000000..9ff7674 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/paperclip-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/paperclip-horizontal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/paperclip-horizontal-duotone.svg new file mode 100644 index 0000000..d583be4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/paperclip-horizontal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/parachute-duotone.svg b/phosphor_orig/SVGs Flat/duotone/parachute-duotone.svg new file mode 100644 index 0000000..b4fd863 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/parachute-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/paragraph-duotone.svg b/phosphor_orig/SVGs Flat/duotone/paragraph-duotone.svg new file mode 100644 index 0000000..35ce74c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/paragraph-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/parallelogram-duotone.svg b/phosphor_orig/SVGs Flat/duotone/parallelogram-duotone.svg new file mode 100644 index 0000000..71cb931 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/parallelogram-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/park-duotone.svg b/phosphor_orig/SVGs Flat/duotone/park-duotone.svg new file mode 100644 index 0000000..1f84b17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/park-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/password-duotone.svg b/phosphor_orig/SVGs Flat/duotone/password-duotone.svg new file mode 100644 index 0000000..4607a1c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/password-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/path-duotone.svg b/phosphor_orig/SVGs Flat/duotone/path-duotone.svg new file mode 100644 index 0000000..836a5e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/path-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/patreon-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/patreon-logo-duotone.svg new file mode 100644 index 0000000..9ab1fdd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/patreon-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pause-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pause-circle-duotone.svg new file mode 100644 index 0000000..21eb532 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pause-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pause-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pause-duotone.svg new file mode 100644 index 0000000..b504fc9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pause-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/paw-print-duotone.svg b/phosphor_orig/SVGs Flat/duotone/paw-print-duotone.svg new file mode 100644 index 0000000..abbe5dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/paw-print-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/paypal-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/paypal-logo-duotone.svg new file mode 100644 index 0000000..a4f3963 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/paypal-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/peace-duotone.svg b/phosphor_orig/SVGs Flat/duotone/peace-duotone.svg new file mode 100644 index 0000000..5280e98 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/peace-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pen-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pen-duotone.svg new file mode 100644 index 0000000..3ad4dee --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pen-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pen-nib-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pen-nib-duotone.svg new file mode 100644 index 0000000..fc4670e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pen-nib-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pen-nib-straight-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pen-nib-straight-duotone.svg new file mode 100644 index 0000000..c06ddc7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pen-nib-straight-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pencil-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pencil-circle-duotone.svg new file mode 100644 index 0000000..2b12574 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pencil-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pencil-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pencil-duotone.svg new file mode 100644 index 0000000..16c90f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pencil-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pencil-line-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pencil-line-duotone.svg new file mode 100644 index 0000000..428bd6d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pencil-line-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pencil-ruler-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pencil-ruler-duotone.svg new file mode 100644 index 0000000..609da6d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pencil-ruler-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pencil-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pencil-simple-duotone.svg new file mode 100644 index 0000000..8419cb8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pencil-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pencil-simple-line-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pencil-simple-line-duotone.svg new file mode 100644 index 0000000..b1c2ad1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pencil-simple-line-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pencil-simple-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pencil-simple-slash-duotone.svg new file mode 100644 index 0000000..8504a52 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pencil-simple-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pencil-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pencil-slash-duotone.svg new file mode 100644 index 0000000..06fc472 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pencil-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pentagon-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pentagon-duotone.svg new file mode 100644 index 0000000..26cd785 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pentagon-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pentagram-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pentagram-duotone.svg new file mode 100644 index 0000000..87dd80e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pentagram-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pepper-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pepper-duotone.svg new file mode 100644 index 0000000..9bc8868 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pepper-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/percent-duotone.svg b/phosphor_orig/SVGs Flat/duotone/percent-duotone.svg new file mode 100644 index 0000000..cd7cb23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/percent-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/person-arms-spread-duotone.svg b/phosphor_orig/SVGs Flat/duotone/person-arms-spread-duotone.svg new file mode 100644 index 0000000..a5dad51 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/person-arms-spread-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/person-duotone.svg b/phosphor_orig/SVGs Flat/duotone/person-duotone.svg new file mode 100644 index 0000000..a26d117 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/person-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/person-simple-bike-duotone.svg b/phosphor_orig/SVGs Flat/duotone/person-simple-bike-duotone.svg new file mode 100644 index 0000000..c3931dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/person-simple-bike-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/person-simple-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/person-simple-circle-duotone.svg new file mode 100644 index 0000000..9abf9ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/person-simple-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/person-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/person-simple-duotone.svg new file mode 100644 index 0000000..0e33962 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/person-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/person-simple-hike-duotone.svg b/phosphor_orig/SVGs Flat/duotone/person-simple-hike-duotone.svg new file mode 100644 index 0000000..3cc9d78 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/person-simple-hike-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/person-simple-run-duotone.svg b/phosphor_orig/SVGs Flat/duotone/person-simple-run-duotone.svg new file mode 100644 index 0000000..8f67144 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/person-simple-run-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/person-simple-ski-duotone.svg b/phosphor_orig/SVGs Flat/duotone/person-simple-ski-duotone.svg new file mode 100644 index 0000000..a9daff9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/person-simple-ski-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/person-simple-snowboard-duotone.svg b/phosphor_orig/SVGs Flat/duotone/person-simple-snowboard-duotone.svg new file mode 100644 index 0000000..1b8e701 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/person-simple-snowboard-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/person-simple-swim-duotone.svg b/phosphor_orig/SVGs Flat/duotone/person-simple-swim-duotone.svg new file mode 100644 index 0000000..dcd763f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/person-simple-swim-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/person-simple-tai-chi-duotone.svg b/phosphor_orig/SVGs Flat/duotone/person-simple-tai-chi-duotone.svg new file mode 100644 index 0000000..4c64b48 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/person-simple-tai-chi-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/person-simple-throw-duotone.svg b/phosphor_orig/SVGs Flat/duotone/person-simple-throw-duotone.svg new file mode 100644 index 0000000..964afc6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/person-simple-throw-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/person-simple-walk-duotone.svg b/phosphor_orig/SVGs Flat/duotone/person-simple-walk-duotone.svg new file mode 100644 index 0000000..8302cda --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/person-simple-walk-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/perspective-duotone.svg b/phosphor_orig/SVGs Flat/duotone/perspective-duotone.svg new file mode 100644 index 0000000..1a2a789 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/perspective-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/phone-call-duotone.svg b/phosphor_orig/SVGs Flat/duotone/phone-call-duotone.svg new file mode 100644 index 0000000..f3e2a89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/phone-call-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/phone-disconnect-duotone.svg b/phosphor_orig/SVGs Flat/duotone/phone-disconnect-duotone.svg new file mode 100644 index 0000000..702aae8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/phone-disconnect-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/phone-duotone.svg b/phosphor_orig/SVGs Flat/duotone/phone-duotone.svg new file mode 100644 index 0000000..9fdb283 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/phone-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/phone-incoming-duotone.svg b/phosphor_orig/SVGs Flat/duotone/phone-incoming-duotone.svg new file mode 100644 index 0000000..8a3570d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/phone-incoming-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/phone-list-duotone.svg b/phosphor_orig/SVGs Flat/duotone/phone-list-duotone.svg new file mode 100644 index 0000000..4c585d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/phone-list-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/phone-outgoing-duotone.svg b/phosphor_orig/SVGs Flat/duotone/phone-outgoing-duotone.svg new file mode 100644 index 0000000..7a9dd15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/phone-outgoing-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/phone-pause-duotone.svg b/phosphor_orig/SVGs Flat/duotone/phone-pause-duotone.svg new file mode 100644 index 0000000..8efad00 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/phone-pause-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/phone-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/phone-plus-duotone.svg new file mode 100644 index 0000000..bb59163 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/phone-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/phone-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/phone-slash-duotone.svg new file mode 100644 index 0000000..2249dca --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/phone-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/phone-transfer-duotone.svg b/phosphor_orig/SVGs Flat/duotone/phone-transfer-duotone.svg new file mode 100644 index 0000000..45b43a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/phone-transfer-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/phone-x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/phone-x-duotone.svg new file mode 100644 index 0000000..65121de --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/phone-x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/phosphor-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/phosphor-logo-duotone.svg new file mode 100644 index 0000000..550f1fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/phosphor-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pi-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pi-duotone.svg new file mode 100644 index 0000000..b035288 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pi-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/piano-keys-duotone.svg b/phosphor_orig/SVGs Flat/duotone/piano-keys-duotone.svg new file mode 100644 index 0000000..78df10b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/piano-keys-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/picnic-table-duotone.svg b/phosphor_orig/SVGs Flat/duotone/picnic-table-duotone.svg new file mode 100644 index 0000000..306153f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/picnic-table-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/picture-in-picture-duotone.svg b/phosphor_orig/SVGs Flat/duotone/picture-in-picture-duotone.svg new file mode 100644 index 0000000..3f0d60c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/picture-in-picture-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/piggy-bank-duotone.svg b/phosphor_orig/SVGs Flat/duotone/piggy-bank-duotone.svg new file mode 100644 index 0000000..612bdf5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/piggy-bank-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pill-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pill-duotone.svg new file mode 100644 index 0000000..23c88ff --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pill-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/ping-pong-duotone.svg b/phosphor_orig/SVGs Flat/duotone/ping-pong-duotone.svg new file mode 100644 index 0000000..f2db795 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/ping-pong-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pint-glass-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pint-glass-duotone.svg new file mode 100644 index 0000000..1dce08f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pint-glass-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pinterest-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pinterest-logo-duotone.svg new file mode 100644 index 0000000..f67833c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pinterest-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pinwheel-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pinwheel-duotone.svg new file mode 100644 index 0000000..4e5c010 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pinwheel-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pipe-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pipe-duotone.svg new file mode 100644 index 0000000..a73c9ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pipe-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pipe-wrench-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pipe-wrench-duotone.svg new file mode 100644 index 0000000..aa946fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pipe-wrench-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pix-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pix-logo-duotone.svg new file mode 100644 index 0000000..b887690 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pix-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pizza-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pizza-duotone.svg new file mode 100644 index 0000000..566dfa6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pizza-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/placeholder-duotone.svg b/phosphor_orig/SVGs Flat/duotone/placeholder-duotone.svg new file mode 100644 index 0000000..289e29f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/placeholder-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/planet-duotone.svg b/phosphor_orig/SVGs Flat/duotone/planet-duotone.svg new file mode 100644 index 0000000..d191bdf --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/planet-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/plant-duotone.svg b/phosphor_orig/SVGs Flat/duotone/plant-duotone.svg new file mode 100644 index 0000000..9292bf4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/plant-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/play-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/play-circle-duotone.svg new file mode 100644 index 0000000..6e9bdff --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/play-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/play-duotone.svg b/phosphor_orig/SVGs Flat/duotone/play-duotone.svg new file mode 100644 index 0000000..a7e0a99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/play-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/play-pause-duotone.svg b/phosphor_orig/SVGs Flat/duotone/play-pause-duotone.svg new file mode 100644 index 0000000..3c2755d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/play-pause-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/playlist-duotone.svg b/phosphor_orig/SVGs Flat/duotone/playlist-duotone.svg new file mode 100644 index 0000000..f27a1f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/playlist-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/plug-charging-duotone.svg b/phosphor_orig/SVGs Flat/duotone/plug-charging-duotone.svg new file mode 100644 index 0000000..586e2c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/plug-charging-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/plug-duotone.svg b/phosphor_orig/SVGs Flat/duotone/plug-duotone.svg new file mode 100644 index 0000000..cc1574d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/plug-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/plugs-connected-duotone.svg b/phosphor_orig/SVGs Flat/duotone/plugs-connected-duotone.svg new file mode 100644 index 0000000..46a5148 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/plugs-connected-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/plugs-duotone.svg b/phosphor_orig/SVGs Flat/duotone/plugs-duotone.svg new file mode 100644 index 0000000..7a7eea9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/plugs-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/plus-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/plus-circle-duotone.svg new file mode 100644 index 0000000..425665e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/plus-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/plus-duotone.svg new file mode 100644 index 0000000..3c07b40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/plus-minus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/plus-minus-duotone.svg new file mode 100644 index 0000000..17f4ac2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/plus-minus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/plus-square-duotone.svg b/phosphor_orig/SVGs Flat/duotone/plus-square-duotone.svg new file mode 100644 index 0000000..e4c9a4b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/plus-square-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/poker-chip-duotone.svg b/phosphor_orig/SVGs Flat/duotone/poker-chip-duotone.svg new file mode 100644 index 0000000..a19ce61 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/poker-chip-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/police-car-duotone.svg b/phosphor_orig/SVGs Flat/duotone/police-car-duotone.svg new file mode 100644 index 0000000..fd0d1fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/police-car-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/polygon-duotone.svg b/phosphor_orig/SVGs Flat/duotone/polygon-duotone.svg new file mode 100644 index 0000000..c3ca175 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/polygon-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/popcorn-duotone.svg b/phosphor_orig/SVGs Flat/duotone/popcorn-duotone.svg new file mode 100644 index 0000000..a0b550a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/popcorn-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/popsicle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/popsicle-duotone.svg new file mode 100644 index 0000000..34d30ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/popsicle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/potted-plant-duotone.svg b/phosphor_orig/SVGs Flat/duotone/potted-plant-duotone.svg new file mode 100644 index 0000000..18cb180 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/potted-plant-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/power-duotone.svg b/phosphor_orig/SVGs Flat/duotone/power-duotone.svg new file mode 100644 index 0000000..d1d532a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/power-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/prescription-duotone.svg b/phosphor_orig/SVGs Flat/duotone/prescription-duotone.svg new file mode 100644 index 0000000..fde9924 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/prescription-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/presentation-chart-duotone.svg b/phosphor_orig/SVGs Flat/duotone/presentation-chart-duotone.svg new file mode 100644 index 0000000..bb7cce0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/presentation-chart-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/presentation-duotone.svg b/phosphor_orig/SVGs Flat/duotone/presentation-duotone.svg new file mode 100644 index 0000000..a97ade9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/presentation-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/printer-duotone.svg b/phosphor_orig/SVGs Flat/duotone/printer-duotone.svg new file mode 100644 index 0000000..83bb096 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/printer-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/prohibit-duotone.svg b/phosphor_orig/SVGs Flat/duotone/prohibit-duotone.svg new file mode 100644 index 0000000..67a19eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/prohibit-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/prohibit-inset-duotone.svg b/phosphor_orig/SVGs Flat/duotone/prohibit-inset-duotone.svg new file mode 100644 index 0000000..50b94bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/prohibit-inset-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/projector-screen-chart-duotone.svg b/phosphor_orig/SVGs Flat/duotone/projector-screen-chart-duotone.svg new file mode 100644 index 0000000..8fe42a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/projector-screen-chart-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/projector-screen-duotone.svg b/phosphor_orig/SVGs Flat/duotone/projector-screen-duotone.svg new file mode 100644 index 0000000..7e55353 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/projector-screen-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/pulse-duotone.svg b/phosphor_orig/SVGs Flat/duotone/pulse-duotone.svg new file mode 100644 index 0000000..fd2e63c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/pulse-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/push-pin-duotone.svg b/phosphor_orig/SVGs Flat/duotone/push-pin-duotone.svg new file mode 100644 index 0000000..7d214f0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/push-pin-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/push-pin-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/push-pin-simple-duotone.svg new file mode 100644 index 0000000..81bc3b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/push-pin-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/push-pin-simple-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/push-pin-simple-slash-duotone.svg new file mode 100644 index 0000000..9154cfc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/push-pin-simple-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/push-pin-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/push-pin-slash-duotone.svg new file mode 100644 index 0000000..8911b02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/push-pin-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/puzzle-piece-duotone.svg b/phosphor_orig/SVGs Flat/duotone/puzzle-piece-duotone.svg new file mode 100644 index 0000000..093c482 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/puzzle-piece-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/qr-code-duotone.svg b/phosphor_orig/SVGs Flat/duotone/qr-code-duotone.svg new file mode 100644 index 0000000..3ded322 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/qr-code-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/question-duotone.svg b/phosphor_orig/SVGs Flat/duotone/question-duotone.svg new file mode 100644 index 0000000..ee2ba6a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/question-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/question-mark-duotone.svg b/phosphor_orig/SVGs Flat/duotone/question-mark-duotone.svg new file mode 100644 index 0000000..4c0443e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/question-mark-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/queue-duotone.svg b/phosphor_orig/SVGs Flat/duotone/queue-duotone.svg new file mode 100644 index 0000000..f4bc565 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/queue-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/quotes-duotone.svg b/phosphor_orig/SVGs Flat/duotone/quotes-duotone.svg new file mode 100644 index 0000000..7ce859c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/quotes-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/rabbit-duotone.svg b/phosphor_orig/SVGs Flat/duotone/rabbit-duotone.svg new file mode 100644 index 0000000..6d79097 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/rabbit-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/racquet-duotone.svg b/phosphor_orig/SVGs Flat/duotone/racquet-duotone.svg new file mode 100644 index 0000000..b3bfe53 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/racquet-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/radical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/radical-duotone.svg new file mode 100644 index 0000000..d05a1d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/radical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/radio-button-duotone.svg b/phosphor_orig/SVGs Flat/duotone/radio-button-duotone.svg new file mode 100644 index 0000000..ef05d07 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/radio-button-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/radio-duotone.svg b/phosphor_orig/SVGs Flat/duotone/radio-duotone.svg new file mode 100644 index 0000000..1691fcb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/radio-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/radioactive-duotone.svg b/phosphor_orig/SVGs Flat/duotone/radioactive-duotone.svg new file mode 100644 index 0000000..34ff243 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/radioactive-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/rainbow-cloud-duotone.svg b/phosphor_orig/SVGs Flat/duotone/rainbow-cloud-duotone.svg new file mode 100644 index 0000000..9061ae5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/rainbow-cloud-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/rainbow-duotone.svg b/phosphor_orig/SVGs Flat/duotone/rainbow-duotone.svg new file mode 100644 index 0000000..eede45d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/rainbow-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/ranking-duotone.svg b/phosphor_orig/SVGs Flat/duotone/ranking-duotone.svg new file mode 100644 index 0000000..e436e52 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/ranking-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/read-cv-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/read-cv-logo-duotone.svg new file mode 100644 index 0000000..d251039 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/read-cv-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/receipt-duotone.svg b/phosphor_orig/SVGs Flat/duotone/receipt-duotone.svg new file mode 100644 index 0000000..7d219e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/receipt-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/receipt-x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/receipt-x-duotone.svg new file mode 100644 index 0000000..1a639c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/receipt-x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/record-duotone.svg b/phosphor_orig/SVGs Flat/duotone/record-duotone.svg new file mode 100644 index 0000000..3c7f255 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/record-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/rectangle-dashed-duotone.svg b/phosphor_orig/SVGs Flat/duotone/rectangle-dashed-duotone.svg new file mode 100644 index 0000000..636a84d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/rectangle-dashed-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/rectangle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/rectangle-duotone.svg new file mode 100644 index 0000000..c654f7e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/rectangle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/recycle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/recycle-duotone.svg new file mode 100644 index 0000000..0dd891c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/recycle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/reddit-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/reddit-logo-duotone.svg new file mode 100644 index 0000000..c366fdc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/reddit-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/repeat-duotone.svg b/phosphor_orig/SVGs Flat/duotone/repeat-duotone.svg new file mode 100644 index 0000000..aad024c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/repeat-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/repeat-once-duotone.svg b/phosphor_orig/SVGs Flat/duotone/repeat-once-duotone.svg new file mode 100644 index 0000000..5168a65 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/repeat-once-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/replit-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/replit-logo-duotone.svg new file mode 100644 index 0000000..d4b2c40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/replit-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/resize-duotone.svg b/phosphor_orig/SVGs Flat/duotone/resize-duotone.svg new file mode 100644 index 0000000..b17f3f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/resize-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/rewind-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/rewind-circle-duotone.svg new file mode 100644 index 0000000..9e9e27d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/rewind-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/rewind-duotone.svg b/phosphor_orig/SVGs Flat/duotone/rewind-duotone.svg new file mode 100644 index 0000000..b81d328 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/rewind-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/road-horizon-duotone.svg b/phosphor_orig/SVGs Flat/duotone/road-horizon-duotone.svg new file mode 100644 index 0000000..3388442 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/road-horizon-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/robot-duotone.svg b/phosphor_orig/SVGs Flat/duotone/robot-duotone.svg new file mode 100644 index 0000000..1096726 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/robot-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/rocket-duotone.svg b/phosphor_orig/SVGs Flat/duotone/rocket-duotone.svg new file mode 100644 index 0000000..2eb6e1c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/rocket-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/rocket-launch-duotone.svg b/phosphor_orig/SVGs Flat/duotone/rocket-launch-duotone.svg new file mode 100644 index 0000000..c318032 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/rocket-launch-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/rows-duotone.svg b/phosphor_orig/SVGs Flat/duotone/rows-duotone.svg new file mode 100644 index 0000000..feefc4c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/rows-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/rows-plus-bottom-duotone.svg b/phosphor_orig/SVGs Flat/duotone/rows-plus-bottom-duotone.svg new file mode 100644 index 0000000..401f526 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/rows-plus-bottom-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/rows-plus-top-duotone.svg b/phosphor_orig/SVGs Flat/duotone/rows-plus-top-duotone.svg new file mode 100644 index 0000000..02212d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/rows-plus-top-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/rss-duotone.svg b/phosphor_orig/SVGs Flat/duotone/rss-duotone.svg new file mode 100644 index 0000000..63963cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/rss-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/rss-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/rss-simple-duotone.svg new file mode 100644 index 0000000..d92944c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/rss-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/rug-duotone.svg b/phosphor_orig/SVGs Flat/duotone/rug-duotone.svg new file mode 100644 index 0000000..40655d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/rug-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/ruler-duotone.svg b/phosphor_orig/SVGs Flat/duotone/ruler-duotone.svg new file mode 100644 index 0000000..e78d85b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/ruler-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sailboat-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sailboat-duotone.svg new file mode 100644 index 0000000..0dbc0fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sailboat-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/scales-duotone.svg b/phosphor_orig/SVGs Flat/duotone/scales-duotone.svg new file mode 100644 index 0000000..0e65bb7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/scales-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/scan-duotone.svg b/phosphor_orig/SVGs Flat/duotone/scan-duotone.svg new file mode 100644 index 0000000..253266b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/scan-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/scan-smiley-duotone.svg b/phosphor_orig/SVGs Flat/duotone/scan-smiley-duotone.svg new file mode 100644 index 0000000..6a1a93a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/scan-smiley-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/scissors-duotone.svg b/phosphor_orig/SVGs Flat/duotone/scissors-duotone.svg new file mode 100644 index 0000000..b0beb9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/scissors-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/scooter-duotone.svg b/phosphor_orig/SVGs Flat/duotone/scooter-duotone.svg new file mode 100644 index 0000000..ba495ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/scooter-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/screencast-duotone.svg b/phosphor_orig/SVGs Flat/duotone/screencast-duotone.svg new file mode 100644 index 0000000..e36e249 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/screencast-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/screwdriver-duotone.svg b/phosphor_orig/SVGs Flat/duotone/screwdriver-duotone.svg new file mode 100644 index 0000000..adac49c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/screwdriver-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/scribble-duotone.svg b/phosphor_orig/SVGs Flat/duotone/scribble-duotone.svg new file mode 100644 index 0000000..0310b1b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/scribble-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/scribble-loop-duotone.svg b/phosphor_orig/SVGs Flat/duotone/scribble-loop-duotone.svg new file mode 100644 index 0000000..5c838dd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/scribble-loop-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/scroll-duotone.svg b/phosphor_orig/SVGs Flat/duotone/scroll-duotone.svg new file mode 100644 index 0000000..5736cf9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/scroll-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/seal-check-duotone.svg b/phosphor_orig/SVGs Flat/duotone/seal-check-duotone.svg new file mode 100644 index 0000000..3f4c4bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/seal-check-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/seal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/seal-duotone.svg new file mode 100644 index 0000000..81f0b77 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/seal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/seal-percent-duotone.svg b/phosphor_orig/SVGs Flat/duotone/seal-percent-duotone.svg new file mode 100644 index 0000000..a104193 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/seal-percent-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/seal-question-duotone.svg b/phosphor_orig/SVGs Flat/duotone/seal-question-duotone.svg new file mode 100644 index 0000000..d0b67e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/seal-question-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/seal-warning-duotone.svg b/phosphor_orig/SVGs Flat/duotone/seal-warning-duotone.svg new file mode 100644 index 0000000..0fbda8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/seal-warning-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/seat-duotone.svg b/phosphor_orig/SVGs Flat/duotone/seat-duotone.svg new file mode 100644 index 0000000..990565c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/seat-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/seatbelt-duotone.svg b/phosphor_orig/SVGs Flat/duotone/seatbelt-duotone.svg new file mode 100644 index 0000000..f8faddc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/seatbelt-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/security-camera-duotone.svg b/phosphor_orig/SVGs Flat/duotone/security-camera-duotone.svg new file mode 100644 index 0000000..b4eb927 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/security-camera-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/selection-all-duotone.svg b/phosphor_orig/SVGs Flat/duotone/selection-all-duotone.svg new file mode 100644 index 0000000..f8de833 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/selection-all-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/selection-background-duotone.svg b/phosphor_orig/SVGs Flat/duotone/selection-background-duotone.svg new file mode 100644 index 0000000..afe142d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/selection-background-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/selection-duotone.svg b/phosphor_orig/SVGs Flat/duotone/selection-duotone.svg new file mode 100644 index 0000000..82eb1ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/selection-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/selection-foreground-duotone.svg b/phosphor_orig/SVGs Flat/duotone/selection-foreground-duotone.svg new file mode 100644 index 0000000..9cd0faa --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/selection-foreground-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/selection-inverse-duotone.svg b/phosphor_orig/SVGs Flat/duotone/selection-inverse-duotone.svg new file mode 100644 index 0000000..40d2a8c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/selection-inverse-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/selection-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/selection-plus-duotone.svg new file mode 100644 index 0000000..33044c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/selection-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/selection-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/selection-slash-duotone.svg new file mode 100644 index 0000000..4215ea5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/selection-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shapes-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shapes-duotone.svg new file mode 100644 index 0000000..690fe04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shapes-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/share-duotone.svg b/phosphor_orig/SVGs Flat/duotone/share-duotone.svg new file mode 100644 index 0000000..5289c4b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/share-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/share-fat-duotone.svg b/phosphor_orig/SVGs Flat/duotone/share-fat-duotone.svg new file mode 100644 index 0000000..1d469df --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/share-fat-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/share-network-duotone.svg b/phosphor_orig/SVGs Flat/duotone/share-network-duotone.svg new file mode 100644 index 0000000..577bd12 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/share-network-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shield-check-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shield-check-duotone.svg new file mode 100644 index 0000000..1a20c19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shield-check-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shield-checkered-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shield-checkered-duotone.svg new file mode 100644 index 0000000..e7f17a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shield-checkered-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shield-chevron-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shield-chevron-duotone.svg new file mode 100644 index 0000000..451b2a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shield-chevron-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shield-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shield-duotone.svg new file mode 100644 index 0000000..daf6062 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shield-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shield-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shield-plus-duotone.svg new file mode 100644 index 0000000..05c91f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shield-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shield-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shield-slash-duotone.svg new file mode 100644 index 0000000..1a66817 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shield-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shield-star-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shield-star-duotone.svg new file mode 100644 index 0000000..99ed703 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shield-star-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shield-warning-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shield-warning-duotone.svg new file mode 100644 index 0000000..8b38ddf --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shield-warning-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shipping-container-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shipping-container-duotone.svg new file mode 100644 index 0000000..a3783e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shipping-container-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shirt-folded-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shirt-folded-duotone.svg new file mode 100644 index 0000000..c7cfe69 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shirt-folded-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shooting-star-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shooting-star-duotone.svg new file mode 100644 index 0000000..9b8dd69 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shooting-star-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shopping-bag-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shopping-bag-duotone.svg new file mode 100644 index 0000000..da1942d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shopping-bag-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shopping-bag-open-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shopping-bag-open-duotone.svg new file mode 100644 index 0000000..e1b0601 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shopping-bag-open-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shopping-cart-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shopping-cart-duotone.svg new file mode 100644 index 0000000..e06802e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shopping-cart-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shopping-cart-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shopping-cart-simple-duotone.svg new file mode 100644 index 0000000..11857b0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shopping-cart-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shovel-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shovel-duotone.svg new file mode 100644 index 0000000..501a53d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shovel-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shower-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shower-duotone.svg new file mode 100644 index 0000000..060911a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shower-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shrimp-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shrimp-duotone.svg new file mode 100644 index 0000000..f84a1a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shrimp-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shuffle-angular-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shuffle-angular-duotone.svg new file mode 100644 index 0000000..43759e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shuffle-angular-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shuffle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shuffle-duotone.svg new file mode 100644 index 0000000..34fb639 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shuffle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/shuffle-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/shuffle-simple-duotone.svg new file mode 100644 index 0000000..3e03341 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/shuffle-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sidebar-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sidebar-duotone.svg new file mode 100644 index 0000000..eca068b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sidebar-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sidebar-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sidebar-simple-duotone.svg new file mode 100644 index 0000000..29f7961 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sidebar-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sigma-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sigma-duotone.svg new file mode 100644 index 0000000..bb7fc44 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sigma-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sign-in-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sign-in-duotone.svg new file mode 100644 index 0000000..afc3479 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sign-in-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sign-out-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sign-out-duotone.svg new file mode 100644 index 0000000..2372044 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sign-out-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/signature-duotone.svg b/phosphor_orig/SVGs Flat/duotone/signature-duotone.svg new file mode 100644 index 0000000..1553420 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/signature-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/signpost-duotone.svg b/phosphor_orig/SVGs Flat/duotone/signpost-duotone.svg new file mode 100644 index 0000000..10d91a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/signpost-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sim-card-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sim-card-duotone.svg new file mode 100644 index 0000000..edb6622 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sim-card-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/siren-duotone.svg b/phosphor_orig/SVGs Flat/duotone/siren-duotone.svg new file mode 100644 index 0000000..3afa975 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/siren-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sketch-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sketch-logo-duotone.svg new file mode 100644 index 0000000..eafe66d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sketch-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/skip-back-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/skip-back-circle-duotone.svg new file mode 100644 index 0000000..9f85730 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/skip-back-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/skip-back-duotone.svg b/phosphor_orig/SVGs Flat/duotone/skip-back-duotone.svg new file mode 100644 index 0000000..add1a17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/skip-back-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/skip-forward-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/skip-forward-circle-duotone.svg new file mode 100644 index 0000000..5173bc3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/skip-forward-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/skip-forward-duotone.svg b/phosphor_orig/SVGs Flat/duotone/skip-forward-duotone.svg new file mode 100644 index 0000000..25da633 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/skip-forward-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/skull-duotone.svg b/phosphor_orig/SVGs Flat/duotone/skull-duotone.svg new file mode 100644 index 0000000..90c27ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/skull-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/skype-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/skype-logo-duotone.svg new file mode 100644 index 0000000..d242fb1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/skype-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/slack-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/slack-logo-duotone.svg new file mode 100644 index 0000000..e6d1d40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/slack-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sliders-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sliders-duotone.svg new file mode 100644 index 0000000..df3a93e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sliders-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sliders-horizontal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sliders-horizontal-duotone.svg new file mode 100644 index 0000000..921438f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sliders-horizontal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/slideshow-duotone.svg b/phosphor_orig/SVGs Flat/duotone/slideshow-duotone.svg new file mode 100644 index 0000000..4228930 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/slideshow-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/smiley-angry-duotone.svg b/phosphor_orig/SVGs Flat/duotone/smiley-angry-duotone.svg new file mode 100644 index 0000000..cea50a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/smiley-angry-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/smiley-blank-duotone.svg b/phosphor_orig/SVGs Flat/duotone/smiley-blank-duotone.svg new file mode 100644 index 0000000..d6ad927 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/smiley-blank-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/smiley-duotone.svg b/phosphor_orig/SVGs Flat/duotone/smiley-duotone.svg new file mode 100644 index 0000000..a22d17c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/smiley-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/smiley-meh-duotone.svg b/phosphor_orig/SVGs Flat/duotone/smiley-meh-duotone.svg new file mode 100644 index 0000000..939b73e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/smiley-meh-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/smiley-melting-duotone.svg b/phosphor_orig/SVGs Flat/duotone/smiley-melting-duotone.svg new file mode 100644 index 0000000..0150100 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/smiley-melting-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/smiley-nervous-duotone.svg b/phosphor_orig/SVGs Flat/duotone/smiley-nervous-duotone.svg new file mode 100644 index 0000000..66c15a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/smiley-nervous-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/smiley-sad-duotone.svg b/phosphor_orig/SVGs Flat/duotone/smiley-sad-duotone.svg new file mode 100644 index 0000000..578854a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/smiley-sad-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/smiley-sticker-duotone.svg b/phosphor_orig/SVGs Flat/duotone/smiley-sticker-duotone.svg new file mode 100644 index 0000000..f986f4b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/smiley-sticker-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/smiley-wink-duotone.svg b/phosphor_orig/SVGs Flat/duotone/smiley-wink-duotone.svg new file mode 100644 index 0000000..db888a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/smiley-wink-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/smiley-x-eyes-duotone.svg b/phosphor_orig/SVGs Flat/duotone/smiley-x-eyes-duotone.svg new file mode 100644 index 0000000..f76ae9d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/smiley-x-eyes-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/snapchat-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/snapchat-logo-duotone.svg new file mode 100644 index 0000000..06842e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/snapchat-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sneaker-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sneaker-duotone.svg new file mode 100644 index 0000000..9779879 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sneaker-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sneaker-move-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sneaker-move-duotone.svg new file mode 100644 index 0000000..145b9f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sneaker-move-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/snowflake-duotone.svg b/phosphor_orig/SVGs Flat/duotone/snowflake-duotone.svg new file mode 100644 index 0000000..7890034 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/snowflake-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/soccer-ball-duotone.svg b/phosphor_orig/SVGs Flat/duotone/soccer-ball-duotone.svg new file mode 100644 index 0000000..4008865 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/soccer-ball-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sock-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sock-duotone.svg new file mode 100644 index 0000000..6d4b7b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sock-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/solar-panel-duotone.svg b/phosphor_orig/SVGs Flat/duotone/solar-panel-duotone.svg new file mode 100644 index 0000000..35f8db1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/solar-panel-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/solar-roof-duotone.svg b/phosphor_orig/SVGs Flat/duotone/solar-roof-duotone.svg new file mode 100644 index 0000000..dd187d6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/solar-roof-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sort-ascending-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sort-ascending-duotone.svg new file mode 100644 index 0000000..219c47e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sort-ascending-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sort-descending-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sort-descending-duotone.svg new file mode 100644 index 0000000..bd1c5bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sort-descending-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/soundcloud-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/soundcloud-logo-duotone.svg new file mode 100644 index 0000000..bda201d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/soundcloud-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/spade-duotone.svg b/phosphor_orig/SVGs Flat/duotone/spade-duotone.svg new file mode 100644 index 0000000..7e8fcb8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/spade-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sparkle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sparkle-duotone.svg new file mode 100644 index 0000000..d0629af --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sparkle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/speaker-hifi-duotone.svg b/phosphor_orig/SVGs Flat/duotone/speaker-hifi-duotone.svg new file mode 100644 index 0000000..33c9862 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/speaker-hifi-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/speaker-high-duotone.svg b/phosphor_orig/SVGs Flat/duotone/speaker-high-duotone.svg new file mode 100644 index 0000000..34e6f47 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/speaker-high-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/speaker-low-duotone.svg b/phosphor_orig/SVGs Flat/duotone/speaker-low-duotone.svg new file mode 100644 index 0000000..13715a8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/speaker-low-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/speaker-none-duotone.svg b/phosphor_orig/SVGs Flat/duotone/speaker-none-duotone.svg new file mode 100644 index 0000000..30c6f4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/speaker-none-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/speaker-simple-high-duotone.svg b/phosphor_orig/SVGs Flat/duotone/speaker-simple-high-duotone.svg new file mode 100644 index 0000000..34855f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/speaker-simple-high-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/speaker-simple-low-duotone.svg b/phosphor_orig/SVGs Flat/duotone/speaker-simple-low-duotone.svg new file mode 100644 index 0000000..bc96769 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/speaker-simple-low-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/speaker-simple-none-duotone.svg b/phosphor_orig/SVGs Flat/duotone/speaker-simple-none-duotone.svg new file mode 100644 index 0000000..5a9c5da --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/speaker-simple-none-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/speaker-simple-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/speaker-simple-slash-duotone.svg new file mode 100644 index 0000000..a1ca4be --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/speaker-simple-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/speaker-simple-x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/speaker-simple-x-duotone.svg new file mode 100644 index 0000000..2e98126 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/speaker-simple-x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/speaker-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/speaker-slash-duotone.svg new file mode 100644 index 0000000..d19dd91 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/speaker-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/speaker-x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/speaker-x-duotone.svg new file mode 100644 index 0000000..6d0fc40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/speaker-x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/speedometer-duotone.svg b/phosphor_orig/SVGs Flat/duotone/speedometer-duotone.svg new file mode 100644 index 0000000..c099dbf --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/speedometer-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sphere-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sphere-duotone.svg new file mode 100644 index 0000000..e2a9fdd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sphere-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/spinner-ball-duotone.svg b/phosphor_orig/SVGs Flat/duotone/spinner-ball-duotone.svg new file mode 100644 index 0000000..8eeaac4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/spinner-ball-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/spinner-duotone.svg b/phosphor_orig/SVGs Flat/duotone/spinner-duotone.svg new file mode 100644 index 0000000..7a4bb2c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/spinner-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/spinner-gap-duotone.svg b/phosphor_orig/SVGs Flat/duotone/spinner-gap-duotone.svg new file mode 100644 index 0000000..31edb25 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/spinner-gap-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/spiral-duotone.svg b/phosphor_orig/SVGs Flat/duotone/spiral-duotone.svg new file mode 100644 index 0000000..f5e7454 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/spiral-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/split-horizontal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/split-horizontal-duotone.svg new file mode 100644 index 0000000..98ded27 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/split-horizontal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/split-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/split-vertical-duotone.svg new file mode 100644 index 0000000..b67e4bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/split-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/spotify-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/spotify-logo-duotone.svg new file mode 100644 index 0000000..f4ee89d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/spotify-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/spray-bottle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/spray-bottle-duotone.svg new file mode 100644 index 0000000..63f9fe6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/spray-bottle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/square-duotone.svg b/phosphor_orig/SVGs Flat/duotone/square-duotone.svg new file mode 100644 index 0000000..de90d07 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/square-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/square-half-bottom-duotone.svg b/phosphor_orig/SVGs Flat/duotone/square-half-bottom-duotone.svg new file mode 100644 index 0000000..d885ca3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/square-half-bottom-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/square-half-duotone.svg b/phosphor_orig/SVGs Flat/duotone/square-half-duotone.svg new file mode 100644 index 0000000..99c803b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/square-half-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/square-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/square-logo-duotone.svg new file mode 100644 index 0000000..41d45b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/square-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/square-split-horizontal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/square-split-horizontal-duotone.svg new file mode 100644 index 0000000..d24d851 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/square-split-horizontal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/square-split-vertical-duotone.svg b/phosphor_orig/SVGs Flat/duotone/square-split-vertical-duotone.svg new file mode 100644 index 0000000..503f835 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/square-split-vertical-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/squares-four-duotone.svg b/phosphor_orig/SVGs Flat/duotone/squares-four-duotone.svg new file mode 100644 index 0000000..1aaabb7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/squares-four-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/stack-duotone.svg b/phosphor_orig/SVGs Flat/duotone/stack-duotone.svg new file mode 100644 index 0000000..bd35298 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/stack-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/stack-minus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/stack-minus-duotone.svg new file mode 100644 index 0000000..2ffe0a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/stack-minus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/stack-overflow-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/stack-overflow-logo-duotone.svg new file mode 100644 index 0000000..41ba3a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/stack-overflow-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/stack-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/stack-plus-duotone.svg new file mode 100644 index 0000000..7624502 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/stack-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/stack-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/stack-simple-duotone.svg new file mode 100644 index 0000000..2ba75e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/stack-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/stairs-duotone.svg b/phosphor_orig/SVGs Flat/duotone/stairs-duotone.svg new file mode 100644 index 0000000..ac1bbe7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/stairs-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/stamp-duotone.svg b/phosphor_orig/SVGs Flat/duotone/stamp-duotone.svg new file mode 100644 index 0000000..ceeec06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/stamp-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/standard-definition-duotone.svg b/phosphor_orig/SVGs Flat/duotone/standard-definition-duotone.svg new file mode 100644 index 0000000..67c56cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/standard-definition-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/star-and-crescent-duotone.svg b/phosphor_orig/SVGs Flat/duotone/star-and-crescent-duotone.svg new file mode 100644 index 0000000..089130f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/star-and-crescent-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/star-duotone.svg b/phosphor_orig/SVGs Flat/duotone/star-duotone.svg new file mode 100644 index 0000000..c024776 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/star-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/star-four-duotone.svg b/phosphor_orig/SVGs Flat/duotone/star-four-duotone.svg new file mode 100644 index 0000000..6a3f990 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/star-four-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/star-half-duotone.svg b/phosphor_orig/SVGs Flat/duotone/star-half-duotone.svg new file mode 100644 index 0000000..7d40e5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/star-half-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/star-of-david-duotone.svg b/phosphor_orig/SVGs Flat/duotone/star-of-david-duotone.svg new file mode 100644 index 0000000..7fdccf3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/star-of-david-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/steam-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/steam-logo-duotone.svg new file mode 100644 index 0000000..aefe28b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/steam-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/steering-wheel-duotone.svg b/phosphor_orig/SVGs Flat/duotone/steering-wheel-duotone.svg new file mode 100644 index 0000000..906e26d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/steering-wheel-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/steps-duotone.svg b/phosphor_orig/SVGs Flat/duotone/steps-duotone.svg new file mode 100644 index 0000000..7c81180 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/steps-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/stethoscope-duotone.svg b/phosphor_orig/SVGs Flat/duotone/stethoscope-duotone.svg new file mode 100644 index 0000000..cea93bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/stethoscope-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sticker-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sticker-duotone.svg new file mode 100644 index 0000000..4158219 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sticker-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/stool-duotone.svg b/phosphor_orig/SVGs Flat/duotone/stool-duotone.svg new file mode 100644 index 0000000..115fac9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/stool-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/stop-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/stop-circle-duotone.svg new file mode 100644 index 0000000..13848d0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/stop-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/stop-duotone.svg b/phosphor_orig/SVGs Flat/duotone/stop-duotone.svg new file mode 100644 index 0000000..ec8c159 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/stop-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/storefront-duotone.svg b/phosphor_orig/SVGs Flat/duotone/storefront-duotone.svg new file mode 100644 index 0000000..769dbc0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/storefront-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/strategy-duotone.svg b/phosphor_orig/SVGs Flat/duotone/strategy-duotone.svg new file mode 100644 index 0000000..e961e6f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/strategy-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/stripe-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/stripe-logo-duotone.svg new file mode 100644 index 0000000..36289e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/stripe-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/student-duotone.svg b/phosphor_orig/SVGs Flat/duotone/student-duotone.svg new file mode 100644 index 0000000..abb30f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/student-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/subset-of-duotone.svg b/phosphor_orig/SVGs Flat/duotone/subset-of-duotone.svg new file mode 100644 index 0000000..c81bf1c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/subset-of-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/subset-proper-of-duotone.svg b/phosphor_orig/SVGs Flat/duotone/subset-proper-of-duotone.svg new file mode 100644 index 0000000..bd8d6ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/subset-proper-of-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/subtitles-duotone.svg b/phosphor_orig/SVGs Flat/duotone/subtitles-duotone.svg new file mode 100644 index 0000000..3cddbd0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/subtitles-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/subtitles-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/subtitles-slash-duotone.svg new file mode 100644 index 0000000..d459f7e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/subtitles-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/subtract-duotone.svg b/phosphor_orig/SVGs Flat/duotone/subtract-duotone.svg new file mode 100644 index 0000000..857d87c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/subtract-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/subtract-square-duotone.svg b/phosphor_orig/SVGs Flat/duotone/subtract-square-duotone.svg new file mode 100644 index 0000000..446b728 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/subtract-square-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/subway-duotone.svg b/phosphor_orig/SVGs Flat/duotone/subway-duotone.svg new file mode 100644 index 0000000..a658f57 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/subway-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/suitcase-duotone.svg b/phosphor_orig/SVGs Flat/duotone/suitcase-duotone.svg new file mode 100644 index 0000000..b1fc5ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/suitcase-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/suitcase-rolling-duotone.svg b/phosphor_orig/SVGs Flat/duotone/suitcase-rolling-duotone.svg new file mode 100644 index 0000000..7a7c88a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/suitcase-rolling-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/suitcase-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/suitcase-simple-duotone.svg new file mode 100644 index 0000000..3af4bb0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/suitcase-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sun-dim-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sun-dim-duotone.svg new file mode 100644 index 0000000..9483f36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sun-dim-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sun-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sun-duotone.svg new file mode 100644 index 0000000..b56d110 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sun-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sun-horizon-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sun-horizon-duotone.svg new file mode 100644 index 0000000..0c7f536 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sun-horizon-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sunglasses-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sunglasses-duotone.svg new file mode 100644 index 0000000..ccd6c9c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sunglasses-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/superset-of-duotone.svg b/phosphor_orig/SVGs Flat/duotone/superset-of-duotone.svg new file mode 100644 index 0000000..7f53b9f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/superset-of-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/superset-proper-of-duotone.svg b/phosphor_orig/SVGs Flat/duotone/superset-proper-of-duotone.svg new file mode 100644 index 0000000..02464b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/superset-proper-of-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/swap-duotone.svg b/phosphor_orig/SVGs Flat/duotone/swap-duotone.svg new file mode 100644 index 0000000..84a56ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/swap-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/swatches-duotone.svg b/phosphor_orig/SVGs Flat/duotone/swatches-duotone.svg new file mode 100644 index 0000000..2be8e49 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/swatches-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/swimming-pool-duotone.svg b/phosphor_orig/SVGs Flat/duotone/swimming-pool-duotone.svg new file mode 100644 index 0000000..9721d4c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/swimming-pool-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/sword-duotone.svg b/phosphor_orig/SVGs Flat/duotone/sword-duotone.svg new file mode 100644 index 0000000..8566b24 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/sword-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/synagogue-duotone.svg b/phosphor_orig/SVGs Flat/duotone/synagogue-duotone.svg new file mode 100644 index 0000000..80c4ccc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/synagogue-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/syringe-duotone.svg b/phosphor_orig/SVGs Flat/duotone/syringe-duotone.svg new file mode 100644 index 0000000..f3044b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/syringe-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/t-shirt-duotone.svg b/phosphor_orig/SVGs Flat/duotone/t-shirt-duotone.svg new file mode 100644 index 0000000..94a6573 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/t-shirt-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/table-duotone.svg b/phosphor_orig/SVGs Flat/duotone/table-duotone.svg new file mode 100644 index 0000000..14f263a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/table-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tabs-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tabs-duotone.svg new file mode 100644 index 0000000..a071f86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tabs-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tag-chevron-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tag-chevron-duotone.svg new file mode 100644 index 0000000..0cfbbc5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tag-chevron-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tag-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tag-duotone.svg new file mode 100644 index 0000000..ceffd0b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tag-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tag-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tag-simple-duotone.svg new file mode 100644 index 0000000..2264d92 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tag-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/target-duotone.svg b/phosphor_orig/SVGs Flat/duotone/target-duotone.svg new file mode 100644 index 0000000..4d78f91 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/target-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/taxi-duotone.svg b/phosphor_orig/SVGs Flat/duotone/taxi-duotone.svg new file mode 100644 index 0000000..bf4ebab --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/taxi-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tea-bag-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tea-bag-duotone.svg new file mode 100644 index 0000000..b526dba --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tea-bag-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/telegram-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/telegram-logo-duotone.svg new file mode 100644 index 0000000..21e2bb4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/telegram-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/television-duotone.svg b/phosphor_orig/SVGs Flat/duotone/television-duotone.svg new file mode 100644 index 0000000..f288586 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/television-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/television-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/television-simple-duotone.svg new file mode 100644 index 0000000..4bea2f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/television-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tennis-ball-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tennis-ball-duotone.svg new file mode 100644 index 0000000..cb465ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tennis-ball-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tent-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tent-duotone.svg new file mode 100644 index 0000000..2ca87a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tent-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/terminal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/terminal-duotone.svg new file mode 100644 index 0000000..015c944 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/terminal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/terminal-window-duotone.svg b/phosphor_orig/SVGs Flat/duotone/terminal-window-duotone.svg new file mode 100644 index 0000000..92d5643 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/terminal-window-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/test-tube-duotone.svg b/phosphor_orig/SVGs Flat/duotone/test-tube-duotone.svg new file mode 100644 index 0000000..5523596 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/test-tube-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-a-underline-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-a-underline-duotone.svg new file mode 100644 index 0000000..34a4fd2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-a-underline-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-aa-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-aa-duotone.svg new file mode 100644 index 0000000..e973c57 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-aa-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-align-center-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-align-center-duotone.svg new file mode 100644 index 0000000..fd513d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-align-center-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-align-justify-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-align-justify-duotone.svg new file mode 100644 index 0000000..7307de9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-align-justify-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-align-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-align-left-duotone.svg new file mode 100644 index 0000000..cced52c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-align-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-align-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-align-right-duotone.svg new file mode 100644 index 0000000..2f5cd32 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-align-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-b-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-b-duotone.svg new file mode 100644 index 0000000..b5c8899 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-b-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-columns-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-columns-duotone.svg new file mode 100644 index 0000000..c32fd80 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-columns-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-h-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-h-duotone.svg new file mode 100644 index 0000000..5e78c4a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-h-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-h-five-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-h-five-duotone.svg new file mode 100644 index 0000000..fbd188a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-h-five-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-h-four-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-h-four-duotone.svg new file mode 100644 index 0000000..06240c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-h-four-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-h-one-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-h-one-duotone.svg new file mode 100644 index 0000000..cefdf04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-h-one-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-h-six-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-h-six-duotone.svg new file mode 100644 index 0000000..0c91e5a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-h-six-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-h-three-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-h-three-duotone.svg new file mode 100644 index 0000000..57579a8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-h-three-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-h-two-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-h-two-duotone.svg new file mode 100644 index 0000000..86f8aa9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-h-two-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-indent-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-indent-duotone.svg new file mode 100644 index 0000000..180b974 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-indent-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-italic-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-italic-duotone.svg new file mode 100644 index 0000000..3532d8c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-italic-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-outdent-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-outdent-duotone.svg new file mode 100644 index 0000000..b7309cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-outdent-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-strikethrough-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-strikethrough-duotone.svg new file mode 100644 index 0000000..eb0bd07 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-strikethrough-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-subscript-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-subscript-duotone.svg new file mode 100644 index 0000000..f7ae7cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-subscript-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-superscript-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-superscript-duotone.svg new file mode 100644 index 0000000..2e97d3c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-superscript-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-t-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-t-duotone.svg new file mode 100644 index 0000000..2e6095c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-t-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-t-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-t-slash-duotone.svg new file mode 100644 index 0000000..b41e7e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-t-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/text-underline-duotone.svg b/phosphor_orig/SVGs Flat/duotone/text-underline-duotone.svg new file mode 100644 index 0000000..824b0b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/text-underline-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/textbox-duotone.svg b/phosphor_orig/SVGs Flat/duotone/textbox-duotone.svg new file mode 100644 index 0000000..4746801 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/textbox-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/thermometer-cold-duotone.svg b/phosphor_orig/SVGs Flat/duotone/thermometer-cold-duotone.svg new file mode 100644 index 0000000..d8cea44 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/thermometer-cold-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/thermometer-duotone.svg b/phosphor_orig/SVGs Flat/duotone/thermometer-duotone.svg new file mode 100644 index 0000000..3ddb138 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/thermometer-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/thermometer-hot-duotone.svg b/phosphor_orig/SVGs Flat/duotone/thermometer-hot-duotone.svg new file mode 100644 index 0000000..e00a666 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/thermometer-hot-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/thermometer-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/thermometer-simple-duotone.svg new file mode 100644 index 0000000..16f55cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/thermometer-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/threads-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/threads-logo-duotone.svg new file mode 100644 index 0000000..7e9d25c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/threads-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/three-d-duotone.svg b/phosphor_orig/SVGs Flat/duotone/three-d-duotone.svg new file mode 100644 index 0000000..35c5a38 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/three-d-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/thumbs-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/thumbs-down-duotone.svg new file mode 100644 index 0000000..98822a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/thumbs-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/thumbs-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/thumbs-up-duotone.svg new file mode 100644 index 0000000..60f6830 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/thumbs-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/ticket-duotone.svg b/phosphor_orig/SVGs Flat/duotone/ticket-duotone.svg new file mode 100644 index 0000000..0400efa --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/ticket-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tidal-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tidal-logo-duotone.svg new file mode 100644 index 0000000..36fe7ff --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tidal-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tiktok-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tiktok-logo-duotone.svg new file mode 100644 index 0000000..47ae5fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tiktok-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tilde-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tilde-duotone.svg new file mode 100644 index 0000000..2a1b179 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tilde-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/timer-duotone.svg b/phosphor_orig/SVGs Flat/duotone/timer-duotone.svg new file mode 100644 index 0000000..b6d8913 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/timer-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tip-jar-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tip-jar-duotone.svg new file mode 100644 index 0000000..95d6ecd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tip-jar-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tipi-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tipi-duotone.svg new file mode 100644 index 0000000..23bbaee --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tipi-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tire-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tire-duotone.svg new file mode 100644 index 0000000..be102bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tire-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/toggle-left-duotone.svg b/phosphor_orig/SVGs Flat/duotone/toggle-left-duotone.svg new file mode 100644 index 0000000..abab152 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/toggle-left-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/toggle-right-duotone.svg b/phosphor_orig/SVGs Flat/duotone/toggle-right-duotone.svg new file mode 100644 index 0000000..e98f967 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/toggle-right-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/toilet-duotone.svg b/phosphor_orig/SVGs Flat/duotone/toilet-duotone.svg new file mode 100644 index 0000000..d2755b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/toilet-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/toilet-paper-duotone.svg b/phosphor_orig/SVGs Flat/duotone/toilet-paper-duotone.svg new file mode 100644 index 0000000..777682d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/toilet-paper-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/toolbox-duotone.svg b/phosphor_orig/SVGs Flat/duotone/toolbox-duotone.svg new file mode 100644 index 0000000..fa033d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/toolbox-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tooth-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tooth-duotone.svg new file mode 100644 index 0000000..d5797f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tooth-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tornado-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tornado-duotone.svg new file mode 100644 index 0000000..2ae71c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tornado-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tote-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tote-duotone.svg new file mode 100644 index 0000000..aee1a7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tote-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tote-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tote-simple-duotone.svg new file mode 100644 index 0000000..5463654 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tote-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/towel-duotone.svg b/phosphor_orig/SVGs Flat/duotone/towel-duotone.svg new file mode 100644 index 0000000..948ab5b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/towel-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tractor-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tractor-duotone.svg new file mode 100644 index 0000000..cf10af4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tractor-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/trademark-duotone.svg b/phosphor_orig/SVGs Flat/duotone/trademark-duotone.svg new file mode 100644 index 0000000..4d0cc28 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/trademark-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/trademark-registered-duotone.svg b/phosphor_orig/SVGs Flat/duotone/trademark-registered-duotone.svg new file mode 100644 index 0000000..48579c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/trademark-registered-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/traffic-cone-duotone.svg b/phosphor_orig/SVGs Flat/duotone/traffic-cone-duotone.svg new file mode 100644 index 0000000..1d3221a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/traffic-cone-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/traffic-sign-duotone.svg b/phosphor_orig/SVGs Flat/duotone/traffic-sign-duotone.svg new file mode 100644 index 0000000..043ad30 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/traffic-sign-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/traffic-signal-duotone.svg b/phosphor_orig/SVGs Flat/duotone/traffic-signal-duotone.svg new file mode 100644 index 0000000..0dfe052 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/traffic-signal-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/train-duotone.svg b/phosphor_orig/SVGs Flat/duotone/train-duotone.svg new file mode 100644 index 0000000..45d024a --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/train-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/train-regional-duotone.svg b/phosphor_orig/SVGs Flat/duotone/train-regional-duotone.svg new file mode 100644 index 0000000..54cd125 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/train-regional-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/train-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/train-simple-duotone.svg new file mode 100644 index 0000000..a52ac9c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/train-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tram-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tram-duotone.svg new file mode 100644 index 0000000..5d1bb3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tram-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/translate-duotone.svg b/phosphor_orig/SVGs Flat/duotone/translate-duotone.svg new file mode 100644 index 0000000..094c6fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/translate-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/trash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/trash-duotone.svg new file mode 100644 index 0000000..607a626 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/trash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/trash-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/trash-simple-duotone.svg new file mode 100644 index 0000000..ef62c32 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/trash-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tray-arrow-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tray-arrow-down-duotone.svg new file mode 100644 index 0000000..2f34c96 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tray-arrow-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tray-arrow-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tray-arrow-up-duotone.svg new file mode 100644 index 0000000..f7dacd1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tray-arrow-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tray-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tray-duotone.svg new file mode 100644 index 0000000..d9f8ec2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tray-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/treasure-chest-duotone.svg b/phosphor_orig/SVGs Flat/duotone/treasure-chest-duotone.svg new file mode 100644 index 0000000..4ae63cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/treasure-chest-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tree-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tree-duotone.svg new file mode 100644 index 0000000..53ad426 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tree-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tree-evergreen-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tree-evergreen-duotone.svg new file mode 100644 index 0000000..5f75521 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tree-evergreen-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tree-palm-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tree-palm-duotone.svg new file mode 100644 index 0000000..8f44532 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tree-palm-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tree-structure-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tree-structure-duotone.svg new file mode 100644 index 0000000..58aad0f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tree-structure-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tree-view-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tree-view-duotone.svg new file mode 100644 index 0000000..6f11a43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tree-view-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/trend-down-duotone.svg b/phosphor_orig/SVGs Flat/duotone/trend-down-duotone.svg new file mode 100644 index 0000000..aacfbab --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/trend-down-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/trend-up-duotone.svg b/phosphor_orig/SVGs Flat/duotone/trend-up-duotone.svg new file mode 100644 index 0000000..44ab072 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/trend-up-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/triangle-dashed-duotone.svg b/phosphor_orig/SVGs Flat/duotone/triangle-dashed-duotone.svg new file mode 100644 index 0000000..e680966 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/triangle-dashed-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/triangle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/triangle-duotone.svg new file mode 100644 index 0000000..252ab73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/triangle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/trolley-duotone.svg b/phosphor_orig/SVGs Flat/duotone/trolley-duotone.svg new file mode 100644 index 0000000..0afb8e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/trolley-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/trolley-suitcase-duotone.svg b/phosphor_orig/SVGs Flat/duotone/trolley-suitcase-duotone.svg new file mode 100644 index 0000000..05beabc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/trolley-suitcase-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/trophy-duotone.svg b/phosphor_orig/SVGs Flat/duotone/trophy-duotone.svg new file mode 100644 index 0000000..aba0793 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/trophy-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/truck-duotone.svg b/phosphor_orig/SVGs Flat/duotone/truck-duotone.svg new file mode 100644 index 0000000..b5dcff4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/truck-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/truck-trailer-duotone.svg b/phosphor_orig/SVGs Flat/duotone/truck-trailer-duotone.svg new file mode 100644 index 0000000..3b4c2ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/truck-trailer-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/tumblr-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/tumblr-logo-duotone.svg new file mode 100644 index 0000000..bb7fa51 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/tumblr-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/twitch-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/twitch-logo-duotone.svg new file mode 100644 index 0000000..01ea38e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/twitch-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/twitter-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/twitter-logo-duotone.svg new file mode 100644 index 0000000..e1f91d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/twitter-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/umbrella-duotone.svg b/phosphor_orig/SVGs Flat/duotone/umbrella-duotone.svg new file mode 100644 index 0000000..64db01d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/umbrella-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/umbrella-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/umbrella-simple-duotone.svg new file mode 100644 index 0000000..9b8f84f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/umbrella-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/union-duotone.svg b/phosphor_orig/SVGs Flat/duotone/union-duotone.svg new file mode 100644 index 0000000..d99afc0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/union-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/unite-duotone.svg b/phosphor_orig/SVGs Flat/duotone/unite-duotone.svg new file mode 100644 index 0000000..ab126c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/unite-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/unite-square-duotone.svg b/phosphor_orig/SVGs Flat/duotone/unite-square-duotone.svg new file mode 100644 index 0000000..4118fae --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/unite-square-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/upload-duotone.svg b/phosphor_orig/SVGs Flat/duotone/upload-duotone.svg new file mode 100644 index 0000000..01bde23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/upload-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/upload-simple-duotone.svg b/phosphor_orig/SVGs Flat/duotone/upload-simple-duotone.svg new file mode 100644 index 0000000..d7290d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/upload-simple-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/usb-duotone.svg b/phosphor_orig/SVGs Flat/duotone/usb-duotone.svg new file mode 100644 index 0000000..0aa49eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/usb-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-check-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-check-duotone.svg new file mode 100644 index 0000000..1b4df8e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-check-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-circle-check-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-circle-check-duotone.svg new file mode 100644 index 0000000..690c71c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-circle-check-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-circle-dashed-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-circle-dashed-duotone.svg new file mode 100644 index 0000000..37cdab1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-circle-dashed-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-circle-duotone.svg new file mode 100644 index 0000000..8fe85c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-circle-gear-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-circle-gear-duotone.svg new file mode 100644 index 0000000..56001bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-circle-gear-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-circle-minus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-circle-minus-duotone.svg new file mode 100644 index 0000000..24f3ef2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-circle-minus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-circle-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-circle-plus-duotone.svg new file mode 100644 index 0000000..be0078b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-circle-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-duotone.svg new file mode 100644 index 0000000..c24f571 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-focus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-focus-duotone.svg new file mode 100644 index 0000000..6e642b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-focus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-gear-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-gear-duotone.svg new file mode 100644 index 0000000..c470910 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-gear-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-list-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-list-duotone.svg new file mode 100644 index 0000000..0b586ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-list-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-minus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-minus-duotone.svg new file mode 100644 index 0000000..8ebc4a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-minus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-plus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-plus-duotone.svg new file mode 100644 index 0000000..7efe24c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-plus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-rectangle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-rectangle-duotone.svg new file mode 100644 index 0000000..f5fec64 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-rectangle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-sound-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-sound-duotone.svg new file mode 100644 index 0000000..666f1a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-sound-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-square-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-square-duotone.svg new file mode 100644 index 0000000..7b4ed74 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-square-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/user-switch-duotone.svg b/phosphor_orig/SVGs Flat/duotone/user-switch-duotone.svg new file mode 100644 index 0000000..e8bca50 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/user-switch-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/users-duotone.svg b/phosphor_orig/SVGs Flat/duotone/users-duotone.svg new file mode 100644 index 0000000..77dc286 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/users-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/users-four-duotone.svg b/phosphor_orig/SVGs Flat/duotone/users-four-duotone.svg new file mode 100644 index 0000000..e56f4eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/users-four-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/users-three-duotone.svg b/phosphor_orig/SVGs Flat/duotone/users-three-duotone.svg new file mode 100644 index 0000000..2c870d0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/users-three-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/van-duotone.svg b/phosphor_orig/SVGs Flat/duotone/van-duotone.svg new file mode 100644 index 0000000..afa2b55 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/van-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/vault-duotone.svg b/phosphor_orig/SVGs Flat/duotone/vault-duotone.svg new file mode 100644 index 0000000..71c48a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/vault-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/vector-three-duotone.svg b/phosphor_orig/SVGs Flat/duotone/vector-three-duotone.svg new file mode 100644 index 0000000..24a5eea --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/vector-three-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/vector-two-duotone.svg b/phosphor_orig/SVGs Flat/duotone/vector-two-duotone.svg new file mode 100644 index 0000000..5af6623 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/vector-two-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/vibrate-duotone.svg b/phosphor_orig/SVGs Flat/duotone/vibrate-duotone.svg new file mode 100644 index 0000000..24da411 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/vibrate-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/video-camera-duotone.svg b/phosphor_orig/SVGs Flat/duotone/video-camera-duotone.svg new file mode 100644 index 0000000..411120c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/video-camera-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/video-camera-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/video-camera-slash-duotone.svg new file mode 100644 index 0000000..e24a9e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/video-camera-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/video-conference-duotone.svg b/phosphor_orig/SVGs Flat/duotone/video-conference-duotone.svg new file mode 100644 index 0000000..dda62f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/video-conference-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/video-duotone.svg b/phosphor_orig/SVGs Flat/duotone/video-duotone.svg new file mode 100644 index 0000000..1cb6a83 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/video-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/vignette-duotone.svg b/phosphor_orig/SVGs Flat/duotone/vignette-duotone.svg new file mode 100644 index 0000000..ca48c4b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/vignette-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/vinyl-record-duotone.svg b/phosphor_orig/SVGs Flat/duotone/vinyl-record-duotone.svg new file mode 100644 index 0000000..098948b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/vinyl-record-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/virtual-reality-duotone.svg b/phosphor_orig/SVGs Flat/duotone/virtual-reality-duotone.svg new file mode 100644 index 0000000..75a07e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/virtual-reality-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/virus-duotone.svg b/phosphor_orig/SVGs Flat/duotone/virus-duotone.svg new file mode 100644 index 0000000..a41fd90 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/virus-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/visor-duotone.svg b/phosphor_orig/SVGs Flat/duotone/visor-duotone.svg new file mode 100644 index 0000000..67aa912 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/visor-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/voicemail-duotone.svg b/phosphor_orig/SVGs Flat/duotone/voicemail-duotone.svg new file mode 100644 index 0000000..bd63db2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/voicemail-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/volleyball-duotone.svg b/phosphor_orig/SVGs Flat/duotone/volleyball-duotone.svg new file mode 100644 index 0000000..5dc536f --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/volleyball-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wall-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wall-duotone.svg new file mode 100644 index 0000000..eedf56d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wall-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wallet-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wallet-duotone.svg new file mode 100644 index 0000000..a19ffa6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wallet-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/warehouse-duotone.svg b/phosphor_orig/SVGs Flat/duotone/warehouse-duotone.svg new file mode 100644 index 0000000..da95984 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/warehouse-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/warning-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/warning-circle-duotone.svg new file mode 100644 index 0000000..cbcf069 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/warning-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/warning-diamond-duotone.svg b/phosphor_orig/SVGs Flat/duotone/warning-diamond-duotone.svg new file mode 100644 index 0000000..96240e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/warning-diamond-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/warning-duotone.svg b/phosphor_orig/SVGs Flat/duotone/warning-duotone.svg new file mode 100644 index 0000000..418f3d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/warning-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/warning-octagon-duotone.svg b/phosphor_orig/SVGs Flat/duotone/warning-octagon-duotone.svg new file mode 100644 index 0000000..2189fe9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/warning-octagon-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/washing-machine-duotone.svg b/phosphor_orig/SVGs Flat/duotone/washing-machine-duotone.svg new file mode 100644 index 0000000..0205fc4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/washing-machine-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/watch-duotone.svg b/phosphor_orig/SVGs Flat/duotone/watch-duotone.svg new file mode 100644 index 0000000..58fb0b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/watch-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wave-sawtooth-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wave-sawtooth-duotone.svg new file mode 100644 index 0000000..9ddb7af --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wave-sawtooth-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wave-sine-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wave-sine-duotone.svg new file mode 100644 index 0000000..85a2561 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wave-sine-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wave-square-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wave-square-duotone.svg new file mode 100644 index 0000000..1b7efb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wave-square-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wave-triangle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wave-triangle-duotone.svg new file mode 100644 index 0000000..a7aff61 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wave-triangle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/waveform-duotone.svg b/phosphor_orig/SVGs Flat/duotone/waveform-duotone.svg new file mode 100644 index 0000000..dcd8252 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/waveform-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/waveform-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/waveform-slash-duotone.svg new file mode 100644 index 0000000..9710cb6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/waveform-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/waves-duotone.svg b/phosphor_orig/SVGs Flat/duotone/waves-duotone.svg new file mode 100644 index 0000000..a819195 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/waves-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/webcam-duotone.svg b/phosphor_orig/SVGs Flat/duotone/webcam-duotone.svg new file mode 100644 index 0000000..850b55b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/webcam-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/webcam-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/webcam-slash-duotone.svg new file mode 100644 index 0000000..1d514c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/webcam-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/webhooks-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/webhooks-logo-duotone.svg new file mode 100644 index 0000000..5bb9784 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/webhooks-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wechat-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wechat-logo-duotone.svg new file mode 100644 index 0000000..0432362 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wechat-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/whatsapp-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/whatsapp-logo-duotone.svg new file mode 100644 index 0000000..7937dc3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/whatsapp-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wheelchair-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wheelchair-duotone.svg new file mode 100644 index 0000000..ff8a010 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wheelchair-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wheelchair-motion-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wheelchair-motion-duotone.svg new file mode 100644 index 0000000..fc32a82 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wheelchair-motion-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wifi-high-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wifi-high-duotone.svg new file mode 100644 index 0000000..1188a19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wifi-high-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wifi-low-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wifi-low-duotone.svg new file mode 100644 index 0000000..b93d37b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wifi-low-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wifi-medium-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wifi-medium-duotone.svg new file mode 100644 index 0000000..082c8d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wifi-medium-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wifi-none-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wifi-none-duotone.svg new file mode 100644 index 0000000..787c9e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wifi-none-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wifi-slash-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wifi-slash-duotone.svg new file mode 100644 index 0000000..3fb818e --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wifi-slash-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wifi-x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wifi-x-duotone.svg new file mode 100644 index 0000000..8dbdb13 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wifi-x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wind-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wind-duotone.svg new file mode 100644 index 0000000..745a093 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wind-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/windmill-duotone.svg b/phosphor_orig/SVGs Flat/duotone/windmill-duotone.svg new file mode 100644 index 0000000..dbb3579 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/windmill-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/windows-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/windows-logo-duotone.svg new file mode 100644 index 0000000..877d1c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/windows-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wine-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wine-duotone.svg new file mode 100644 index 0000000..d545f3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wine-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/wrench-duotone.svg b/phosphor_orig/SVGs Flat/duotone/wrench-duotone.svg new file mode 100644 index 0000000..4a0b64d --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/wrench-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/x-circle-duotone.svg b/phosphor_orig/SVGs Flat/duotone/x-circle-duotone.svg new file mode 100644 index 0000000..d6bc0ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/x-circle-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/x-duotone.svg b/phosphor_orig/SVGs Flat/duotone/x-duotone.svg new file mode 100644 index 0000000..d3d654c --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/x-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/x-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/x-logo-duotone.svg new file mode 100644 index 0000000..ae8d821 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/x-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/x-square-duotone.svg b/phosphor_orig/SVGs Flat/duotone/x-square-duotone.svg new file mode 100644 index 0000000..7edf7e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/x-square-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/yarn-duotone.svg b/phosphor_orig/SVGs Flat/duotone/yarn-duotone.svg new file mode 100644 index 0000000..cb14bcf --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/yarn-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/yin-yang-duotone.svg b/phosphor_orig/SVGs Flat/duotone/yin-yang-duotone.svg new file mode 100644 index 0000000..aedf263 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/yin-yang-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/duotone/youtube-logo-duotone.svg b/phosphor_orig/SVGs Flat/duotone/youtube-logo-duotone.svg new file mode 100644 index 0000000..74679b0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/duotone/youtube-logo-duotone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/acorn-fill.svg b/phosphor_orig/SVGs Flat/fill/acorn-fill.svg new file mode 100644 index 0000000..a0aa354 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/acorn-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/address-book-fill.svg b/phosphor_orig/SVGs Flat/fill/address-book-fill.svg new file mode 100644 index 0000000..1d9e6ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/address-book-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/address-book-tabs-fill.svg b/phosphor_orig/SVGs Flat/fill/address-book-tabs-fill.svg new file mode 100644 index 0000000..972c241 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/address-book-tabs-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/air-traffic-control-fill.svg b/phosphor_orig/SVGs Flat/fill/air-traffic-control-fill.svg new file mode 100644 index 0000000..5af79c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/air-traffic-control-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/airplane-fill.svg b/phosphor_orig/SVGs Flat/fill/airplane-fill.svg new file mode 100644 index 0000000..3717e35 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/airplane-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/airplane-in-flight-fill.svg b/phosphor_orig/SVGs Flat/fill/airplane-in-flight-fill.svg new file mode 100644 index 0000000..2adbd86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/airplane-in-flight-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/airplane-landing-fill.svg b/phosphor_orig/SVGs Flat/fill/airplane-landing-fill.svg new file mode 100644 index 0000000..f5cdef5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/airplane-landing-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/airplane-takeoff-fill.svg b/phosphor_orig/SVGs Flat/fill/airplane-takeoff-fill.svg new file mode 100644 index 0000000..007ead9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/airplane-takeoff-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/airplane-taxiing-fill.svg b/phosphor_orig/SVGs Flat/fill/airplane-taxiing-fill.svg new file mode 100644 index 0000000..069cd16 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/airplane-taxiing-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/airplane-tilt-fill.svg b/phosphor_orig/SVGs Flat/fill/airplane-tilt-fill.svg new file mode 100644 index 0000000..f041190 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/airplane-tilt-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/airplay-fill.svg b/phosphor_orig/SVGs Flat/fill/airplay-fill.svg new file mode 100644 index 0000000..5571913 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/airplay-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/alarm-fill.svg b/phosphor_orig/SVGs Flat/fill/alarm-fill.svg new file mode 100644 index 0000000..5532e43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/alarm-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/alien-fill.svg b/phosphor_orig/SVGs Flat/fill/alien-fill.svg new file mode 100644 index 0000000..e27e812 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/alien-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/align-bottom-fill.svg b/phosphor_orig/SVGs Flat/fill/align-bottom-fill.svg new file mode 100644 index 0000000..b2d0fda --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/align-bottom-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/align-bottom-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/align-bottom-simple-fill.svg new file mode 100644 index 0000000..9ee348f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/align-bottom-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/align-center-horizontal-fill.svg b/phosphor_orig/SVGs Flat/fill/align-center-horizontal-fill.svg new file mode 100644 index 0000000..188c175 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/align-center-horizontal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/align-center-horizontal-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/align-center-horizontal-simple-fill.svg new file mode 100644 index 0000000..1912c45 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/align-center-horizontal-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/align-center-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/align-center-vertical-fill.svg new file mode 100644 index 0000000..00cde5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/align-center-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/align-center-vertical-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/align-center-vertical-simple-fill.svg new file mode 100644 index 0000000..bc78c4a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/align-center-vertical-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/align-left-fill.svg b/phosphor_orig/SVGs Flat/fill/align-left-fill.svg new file mode 100644 index 0000000..8a3c159 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/align-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/align-left-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/align-left-simple-fill.svg new file mode 100644 index 0000000..6967238 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/align-left-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/align-right-fill.svg b/phosphor_orig/SVGs Flat/fill/align-right-fill.svg new file mode 100644 index 0000000..72bd9fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/align-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/align-right-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/align-right-simple-fill.svg new file mode 100644 index 0000000..4ec4557 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/align-right-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/align-top-fill.svg b/phosphor_orig/SVGs Flat/fill/align-top-fill.svg new file mode 100644 index 0000000..3baf91a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/align-top-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/align-top-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/align-top-simple-fill.svg new file mode 100644 index 0000000..be2d5f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/align-top-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/amazon-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/amazon-logo-fill.svg new file mode 100644 index 0000000..31c6eab --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/amazon-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/ambulance-fill.svg b/phosphor_orig/SVGs Flat/fill/ambulance-fill.svg new file mode 100644 index 0000000..dd25b17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/ambulance-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/anchor-fill.svg b/phosphor_orig/SVGs Flat/fill/anchor-fill.svg new file mode 100644 index 0000000..c113e9a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/anchor-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/anchor-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/anchor-simple-fill.svg new file mode 100644 index 0000000..d1047b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/anchor-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/android-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/android-logo-fill.svg new file mode 100644 index 0000000..eb0bdcf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/android-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/angle-fill.svg b/phosphor_orig/SVGs Flat/fill/angle-fill.svg new file mode 100644 index 0000000..aed1b75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/angle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/angular-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/angular-logo-fill.svg new file mode 100644 index 0000000..444d97b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/angular-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/aperture-fill.svg b/phosphor_orig/SVGs Flat/fill/aperture-fill.svg new file mode 100644 index 0000000..e02c747 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/aperture-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/app-store-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/app-store-logo-fill.svg new file mode 100644 index 0000000..80b8ec1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/app-store-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/app-window-fill.svg b/phosphor_orig/SVGs Flat/fill/app-window-fill.svg new file mode 100644 index 0000000..947aec0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/app-window-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/apple-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/apple-logo-fill.svg new file mode 100644 index 0000000..255669e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/apple-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/apple-podcasts-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/apple-podcasts-logo-fill.svg new file mode 100644 index 0000000..99fdf70 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/apple-podcasts-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/approximate-equals-fill.svg b/phosphor_orig/SVGs Flat/fill/approximate-equals-fill.svg new file mode 100644 index 0000000..fd25335 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/approximate-equals-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/archive-fill.svg b/phosphor_orig/SVGs Flat/fill/archive-fill.svg new file mode 100644 index 0000000..d3afba1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/archive-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/armchair-fill.svg b/phosphor_orig/SVGs Flat/fill/armchair-fill.svg new file mode 100644 index 0000000..9869ede --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/armchair-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-arc-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-arc-left-fill.svg new file mode 100644 index 0000000..44797a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-arc-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-arc-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-arc-right-fill.svg new file mode 100644 index 0000000..1d7ac15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-arc-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-bend-double-up-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-bend-double-up-left-fill.svg new file mode 100644 index 0000000..e2fe7b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-bend-double-up-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-bend-double-up-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-bend-double-up-right-fill.svg new file mode 100644 index 0000000..2e8ec9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-bend-double-up-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-bend-down-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-bend-down-left-fill.svg new file mode 100644 index 0000000..734ac64 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-bend-down-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-bend-down-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-bend-down-right-fill.svg new file mode 100644 index 0000000..7dc1874 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-bend-down-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-bend-left-down-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-bend-left-down-fill.svg new file mode 100644 index 0000000..4549ee9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-bend-left-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-bend-left-up-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-bend-left-up-fill.svg new file mode 100644 index 0000000..69f8c7b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-bend-left-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-bend-right-down-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-bend-right-down-fill.svg new file mode 100644 index 0000000..d43916a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-bend-right-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-bend-right-up-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-bend-right-up-fill.svg new file mode 100644 index 0000000..406cb07 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-bend-right-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-bend-up-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-bend-up-left-fill.svg new file mode 100644 index 0000000..eebcf32 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-bend-up-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-bend-up-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-bend-up-right-fill.svg new file mode 100644 index 0000000..e956f5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-bend-up-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-circle-down-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-circle-down-fill.svg new file mode 100644 index 0000000..693bfa9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-circle-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-circle-down-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-circle-down-left-fill.svg new file mode 100644 index 0000000..1a4db6e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-circle-down-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-circle-down-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-circle-down-right-fill.svg new file mode 100644 index 0000000..c63599b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-circle-down-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-circle-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-circle-left-fill.svg new file mode 100644 index 0000000..b3c7d63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-circle-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-circle-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-circle-right-fill.svg new file mode 100644 index 0000000..42f5990 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-circle-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-circle-up-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-circle-up-fill.svg new file mode 100644 index 0000000..11cd236 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-circle-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-circle-up-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-circle-up-left-fill.svg new file mode 100644 index 0000000..d4aa1b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-circle-up-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-circle-up-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-circle-up-right-fill.svg new file mode 100644 index 0000000..0d54240 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-circle-up-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-clockwise-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-clockwise-fill.svg new file mode 100644 index 0000000..6eea4fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-clockwise-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-counter-clockwise-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-counter-clockwise-fill.svg new file mode 100644 index 0000000..c39e63a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-counter-clockwise-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-down-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-down-fill.svg new file mode 100644 index 0000000..af0f1d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-down-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-down-left-fill.svg new file mode 100644 index 0000000..823d655 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-down-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-down-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-down-right-fill.svg new file mode 100644 index 0000000..066f06b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-down-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-elbow-down-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-elbow-down-left-fill.svg new file mode 100644 index 0000000..b4f95d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-elbow-down-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-elbow-down-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-elbow-down-right-fill.svg new file mode 100644 index 0000000..044a424 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-elbow-down-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-elbow-left-down-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-elbow-left-down-fill.svg new file mode 100644 index 0000000..e41f8b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-elbow-left-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-elbow-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-elbow-left-fill.svg new file mode 100644 index 0000000..3eded73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-elbow-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-elbow-left-up-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-elbow-left-up-fill.svg new file mode 100644 index 0000000..502590b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-elbow-left-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-elbow-right-down-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-elbow-right-down-fill.svg new file mode 100644 index 0000000..7f5d732 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-elbow-right-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-elbow-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-elbow-right-fill.svg new file mode 100644 index 0000000..8de77ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-elbow-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-elbow-right-up-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-elbow-right-up-fill.svg new file mode 100644 index 0000000..d3b924c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-elbow-right-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-elbow-up-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-elbow-up-left-fill.svg new file mode 100644 index 0000000..59daf68 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-elbow-up-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-elbow-up-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-elbow-up-right-fill.svg new file mode 100644 index 0000000..0aa7c2a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-elbow-up-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-fat-down-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-fat-down-fill.svg new file mode 100644 index 0000000..1dd3124 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-fat-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-fat-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-fat-left-fill.svg new file mode 100644 index 0000000..ff49071 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-fat-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-fat-line-down-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-fat-line-down-fill.svg new file mode 100644 index 0000000..8d6bbc2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-fat-line-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-fat-line-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-fat-line-left-fill.svg new file mode 100644 index 0000000..9edc905 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-fat-line-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-fat-line-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-fat-line-right-fill.svg new file mode 100644 index 0000000..428e4b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-fat-line-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-fat-line-up-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-fat-line-up-fill.svg new file mode 100644 index 0000000..a4a2a93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-fat-line-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-fat-lines-down-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-fat-lines-down-fill.svg new file mode 100644 index 0000000..a589e02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-fat-lines-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-fat-lines-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-fat-lines-left-fill.svg new file mode 100644 index 0000000..5453b29 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-fat-lines-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-fat-lines-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-fat-lines-right-fill.svg new file mode 100644 index 0000000..ee2a09a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-fat-lines-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-fat-lines-up-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-fat-lines-up-fill.svg new file mode 100644 index 0000000..e521d5a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-fat-lines-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-fat-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-fat-right-fill.svg new file mode 100644 index 0000000..45cc291 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-fat-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-fat-up-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-fat-up-fill.svg new file mode 100644 index 0000000..d94655d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-fat-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-left-fill.svg new file mode 100644 index 0000000..41d4280 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-line-down-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-line-down-fill.svg new file mode 100644 index 0000000..d1fe9e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-line-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-line-down-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-line-down-left-fill.svg new file mode 100644 index 0000000..c18f949 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-line-down-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-line-down-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-line-down-right-fill.svg new file mode 100644 index 0000000..b1cacd2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-line-down-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-line-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-line-left-fill.svg new file mode 100644 index 0000000..67002ce --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-line-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-line-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-line-right-fill.svg new file mode 100644 index 0000000..b43d163 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-line-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-line-up-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-line-up-fill.svg new file mode 100644 index 0000000..cf3e65e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-line-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-line-up-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-line-up-left-fill.svg new file mode 100644 index 0000000..bbd1dd8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-line-up-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-line-up-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-line-up-right-fill.svg new file mode 100644 index 0000000..810c296 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-line-up-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-right-fill.svg new file mode 100644 index 0000000..ae779b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-square-down-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-square-down-fill.svg new file mode 100644 index 0000000..ee4bd2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-square-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-square-down-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-square-down-left-fill.svg new file mode 100644 index 0000000..a8ce3cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-square-down-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-square-down-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-square-down-right-fill.svg new file mode 100644 index 0000000..87e95d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-square-down-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-square-in-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-square-in-fill.svg new file mode 100644 index 0000000..a3bcdac --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-square-in-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-square-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-square-left-fill.svg new file mode 100644 index 0000000..3e7ffe9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-square-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-square-out-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-square-out-fill.svg new file mode 100644 index 0000000..0f065d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-square-out-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-square-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-square-right-fill.svg new file mode 100644 index 0000000..49b4193 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-square-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-square-up-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-square-up-fill.svg new file mode 100644 index 0000000..90c1acf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-square-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-square-up-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-square-up-left-fill.svg new file mode 100644 index 0000000..093e1d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-square-up-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-square-up-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-square-up-right-fill.svg new file mode 100644 index 0000000..35ec861 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-square-up-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-u-down-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-u-down-left-fill.svg new file mode 100644 index 0000000..57ca354 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-u-down-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-u-down-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-u-down-right-fill.svg new file mode 100644 index 0000000..4e000ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-u-down-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-u-left-down-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-u-left-down-fill.svg new file mode 100644 index 0000000..77209c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-u-left-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-u-left-up-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-u-left-up-fill.svg new file mode 100644 index 0000000..d6f589c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-u-left-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-u-right-down-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-u-right-down-fill.svg new file mode 100644 index 0000000..c8aef5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-u-right-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-u-right-up-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-u-right-up-fill.svg new file mode 100644 index 0000000..e3bef75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-u-right-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-u-up-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-u-up-left-fill.svg new file mode 100644 index 0000000..118c8eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-u-up-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-u-up-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-u-up-right-fill.svg new file mode 100644 index 0000000..2af82d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-u-up-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-up-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-up-fill.svg new file mode 100644 index 0000000..c553d7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-up-left-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-up-left-fill.svg new file mode 100644 index 0000000..f2d9307 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-up-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrow-up-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrow-up-right-fill.svg new file mode 100644 index 0000000..49672be --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrow-up-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-clockwise-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-clockwise-fill.svg new file mode 100644 index 0000000..19d161b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-clockwise-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-counter-clockwise-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-counter-clockwise-fill.svg new file mode 100644 index 0000000..589824e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-counter-clockwise-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-down-up-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-down-up-fill.svg new file mode 100644 index 0000000..7fb9ec8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-down-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-horizontal-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-horizontal-fill.svg new file mode 100644 index 0000000..87539f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-horizontal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-in-cardinal-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-in-cardinal-fill.svg new file mode 100644 index 0000000..8ce44a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-in-cardinal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-in-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-in-fill.svg new file mode 100644 index 0000000..e758848 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-in-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-in-line-horizontal-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-in-line-horizontal-fill.svg new file mode 100644 index 0000000..427e144 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-in-line-horizontal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-in-line-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-in-line-vertical-fill.svg new file mode 100644 index 0000000..770d2b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-in-line-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-in-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-in-simple-fill.svg new file mode 100644 index 0000000..d3c8921 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-in-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-left-right-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-left-right-fill.svg new file mode 100644 index 0000000..9870c9f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-left-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-merge-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-merge-fill.svg new file mode 100644 index 0000000..fb20b5b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-merge-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-out-cardinal-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-out-cardinal-fill.svg new file mode 100644 index 0000000..3602dbb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-out-cardinal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-out-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-out-fill.svg new file mode 100644 index 0000000..73a153b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-out-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-out-line-horizontal-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-out-line-horizontal-fill.svg new file mode 100644 index 0000000..c09e0b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-out-line-horizontal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-out-line-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-out-line-vertical-fill.svg new file mode 100644 index 0000000..d2bede6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-out-line-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-out-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-out-simple-fill.svg new file mode 100644 index 0000000..fc5e9bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-out-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-split-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-split-fill.svg new file mode 100644 index 0000000..ab47856 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-split-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/arrows-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/arrows-vertical-fill.svg new file mode 100644 index 0000000..ee9f99c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/arrows-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/article-fill.svg b/phosphor_orig/SVGs Flat/fill/article-fill.svg new file mode 100644 index 0000000..2f1f02c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/article-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/article-medium-fill.svg b/phosphor_orig/SVGs Flat/fill/article-medium-fill.svg new file mode 100644 index 0000000..dfb2c61 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/article-medium-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/article-ny-times-fill.svg b/phosphor_orig/SVGs Flat/fill/article-ny-times-fill.svg new file mode 100644 index 0000000..184a366 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/article-ny-times-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/asclepius-fill.svg b/phosphor_orig/SVGs Flat/fill/asclepius-fill.svg new file mode 100644 index 0000000..3290446 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/asclepius-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/asterisk-fill.svg b/phosphor_orig/SVGs Flat/fill/asterisk-fill.svg new file mode 100644 index 0000000..35e911a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/asterisk-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/asterisk-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/asterisk-simple-fill.svg new file mode 100644 index 0000000..2b3bcb9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/asterisk-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/at-fill.svg b/phosphor_orig/SVGs Flat/fill/at-fill.svg new file mode 100644 index 0000000..46dd40c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/at-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/atom-fill.svg b/phosphor_orig/SVGs Flat/fill/atom-fill.svg new file mode 100644 index 0000000..5b2b02a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/atom-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/avocado-fill.svg b/phosphor_orig/SVGs Flat/fill/avocado-fill.svg new file mode 100644 index 0000000..b75d507 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/avocado-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/axe-fill.svg b/phosphor_orig/SVGs Flat/fill/axe-fill.svg new file mode 100644 index 0000000..f4dd3c2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/axe-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/baby-carriage-fill.svg b/phosphor_orig/SVGs Flat/fill/baby-carriage-fill.svg new file mode 100644 index 0000000..b096c5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/baby-carriage-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/baby-fill.svg b/phosphor_orig/SVGs Flat/fill/baby-fill.svg new file mode 100644 index 0000000..1db1579 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/baby-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/backpack-fill.svg b/phosphor_orig/SVGs Flat/fill/backpack-fill.svg new file mode 100644 index 0000000..74ead3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/backpack-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/backspace-fill.svg b/phosphor_orig/SVGs Flat/fill/backspace-fill.svg new file mode 100644 index 0000000..9e26aed --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/backspace-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bag-fill.svg b/phosphor_orig/SVGs Flat/fill/bag-fill.svg new file mode 100644 index 0000000..19cc2d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bag-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bag-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/bag-simple-fill.svg new file mode 100644 index 0000000..295812c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bag-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/balloon-fill.svg b/phosphor_orig/SVGs Flat/fill/balloon-fill.svg new file mode 100644 index 0000000..aaf3f17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/balloon-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bandaids-fill.svg b/phosphor_orig/SVGs Flat/fill/bandaids-fill.svg new file mode 100644 index 0000000..9ea1005 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bandaids-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bank-fill.svg b/phosphor_orig/SVGs Flat/fill/bank-fill.svg new file mode 100644 index 0000000..7e27e1e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bank-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/barbell-fill.svg b/phosphor_orig/SVGs Flat/fill/barbell-fill.svg new file mode 100644 index 0000000..e8971a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/barbell-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/barcode-fill.svg b/phosphor_orig/SVGs Flat/fill/barcode-fill.svg new file mode 100644 index 0000000..581b52c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/barcode-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/barn-fill.svg b/phosphor_orig/SVGs Flat/fill/barn-fill.svg new file mode 100644 index 0000000..10f9da9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/barn-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/barricade-fill.svg b/phosphor_orig/SVGs Flat/fill/barricade-fill.svg new file mode 100644 index 0000000..baa4c2c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/barricade-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/baseball-cap-fill.svg b/phosphor_orig/SVGs Flat/fill/baseball-cap-fill.svg new file mode 100644 index 0000000..11fc1d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/baseball-cap-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/baseball-fill.svg b/phosphor_orig/SVGs Flat/fill/baseball-fill.svg new file mode 100644 index 0000000..566b6b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/baseball-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/baseball-helmet-fill.svg b/phosphor_orig/SVGs Flat/fill/baseball-helmet-fill.svg new file mode 100644 index 0000000..8fd0d5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/baseball-helmet-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/basket-fill.svg b/phosphor_orig/SVGs Flat/fill/basket-fill.svg new file mode 100644 index 0000000..4054e98 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/basket-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/basketball-fill.svg b/phosphor_orig/SVGs Flat/fill/basketball-fill.svg new file mode 100644 index 0000000..4b68588 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/basketball-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bathtub-fill.svg b/phosphor_orig/SVGs Flat/fill/bathtub-fill.svg new file mode 100644 index 0000000..538a7e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bathtub-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-charging-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-charging-fill.svg new file mode 100644 index 0000000..5210b28 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-charging-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-charging-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-charging-vertical-fill.svg new file mode 100644 index 0000000..7d60d24 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-charging-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-empty-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-empty-fill.svg new file mode 100644 index 0000000..704ad36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-empty-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-full-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-full-fill.svg new file mode 100644 index 0000000..54d44cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-full-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-high-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-high-fill.svg new file mode 100644 index 0000000..7bbc513 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-high-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-low-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-low-fill.svg new file mode 100644 index 0000000..27f19aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-low-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-medium-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-medium-fill.svg new file mode 100644 index 0000000..83c3fa4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-medium-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-plus-fill.svg new file mode 100644 index 0000000..2af0e2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-plus-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-plus-vertical-fill.svg new file mode 100644 index 0000000..cc203ce --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-plus-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-vertical-empty-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-vertical-empty-fill.svg new file mode 100644 index 0000000..ae869e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-vertical-empty-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-vertical-full-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-vertical-full-fill.svg new file mode 100644 index 0000000..0ab3e03 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-vertical-full-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-vertical-high-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-vertical-high-fill.svg new file mode 100644 index 0000000..05b0ffb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-vertical-high-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-vertical-low-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-vertical-low-fill.svg new file mode 100644 index 0000000..719fddc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-vertical-low-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-vertical-medium-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-vertical-medium-fill.svg new file mode 100644 index 0000000..7a1f709 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-vertical-medium-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-warning-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-warning-fill.svg new file mode 100644 index 0000000..1d16fea --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-warning-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/battery-warning-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/battery-warning-vertical-fill.svg new file mode 100644 index 0000000..8ea9695 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/battery-warning-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/beach-ball-fill.svg b/phosphor_orig/SVGs Flat/fill/beach-ball-fill.svg new file mode 100644 index 0000000..5088347 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/beach-ball-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/beanie-fill.svg b/phosphor_orig/SVGs Flat/fill/beanie-fill.svg new file mode 100644 index 0000000..2c2ad0f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/beanie-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bed-fill.svg b/phosphor_orig/SVGs Flat/fill/bed-fill.svg new file mode 100644 index 0000000..f769239 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bed-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/beer-bottle-fill.svg b/phosphor_orig/SVGs Flat/fill/beer-bottle-fill.svg new file mode 100644 index 0000000..60072b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/beer-bottle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/beer-stein-fill.svg b/phosphor_orig/SVGs Flat/fill/beer-stein-fill.svg new file mode 100644 index 0000000..7086b2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/beer-stein-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/behance-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/behance-logo-fill.svg new file mode 100644 index 0000000..ee7e4d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/behance-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bell-fill.svg b/phosphor_orig/SVGs Flat/fill/bell-fill.svg new file mode 100644 index 0000000..6f6a357 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bell-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bell-ringing-fill.svg b/phosphor_orig/SVGs Flat/fill/bell-ringing-fill.svg new file mode 100644 index 0000000..c4fbf99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bell-ringing-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bell-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/bell-simple-fill.svg new file mode 100644 index 0000000..4288621 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bell-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bell-simple-ringing-fill.svg b/phosphor_orig/SVGs Flat/fill/bell-simple-ringing-fill.svg new file mode 100644 index 0000000..766ec7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bell-simple-ringing-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bell-simple-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/bell-simple-slash-fill.svg new file mode 100644 index 0000000..9b0558a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bell-simple-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bell-simple-z-fill.svg b/phosphor_orig/SVGs Flat/fill/bell-simple-z-fill.svg new file mode 100644 index 0000000..88c084f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bell-simple-z-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bell-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/bell-slash-fill.svg new file mode 100644 index 0000000..03d1873 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bell-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bell-z-fill.svg b/phosphor_orig/SVGs Flat/fill/bell-z-fill.svg new file mode 100644 index 0000000..09d6847 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bell-z-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/belt-fill.svg b/phosphor_orig/SVGs Flat/fill/belt-fill.svg new file mode 100644 index 0000000..7069961 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/belt-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bezier-curve-fill.svg b/phosphor_orig/SVGs Flat/fill/bezier-curve-fill.svg new file mode 100644 index 0000000..a361761 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bezier-curve-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bicycle-fill.svg b/phosphor_orig/SVGs Flat/fill/bicycle-fill.svg new file mode 100644 index 0000000..e3d9359 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bicycle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/binary-fill.svg b/phosphor_orig/SVGs Flat/fill/binary-fill.svg new file mode 100644 index 0000000..766c3f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/binary-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/binoculars-fill.svg b/phosphor_orig/SVGs Flat/fill/binoculars-fill.svg new file mode 100644 index 0000000..4104fb7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/binoculars-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/biohazard-fill.svg b/phosphor_orig/SVGs Flat/fill/biohazard-fill.svg new file mode 100644 index 0000000..61b3cff --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/biohazard-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bird-fill.svg b/phosphor_orig/SVGs Flat/fill/bird-fill.svg new file mode 100644 index 0000000..0189b05 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bird-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/blueprint-fill.svg b/phosphor_orig/SVGs Flat/fill/blueprint-fill.svg new file mode 100644 index 0000000..998c8e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/blueprint-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bluetooth-connected-fill.svg b/phosphor_orig/SVGs Flat/fill/bluetooth-connected-fill.svg new file mode 100644 index 0000000..9a45024 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bluetooth-connected-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bluetooth-fill.svg b/phosphor_orig/SVGs Flat/fill/bluetooth-fill.svg new file mode 100644 index 0000000..49d99c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bluetooth-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bluetooth-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/bluetooth-slash-fill.svg new file mode 100644 index 0000000..e7776d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bluetooth-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bluetooth-x-fill.svg b/phosphor_orig/SVGs Flat/fill/bluetooth-x-fill.svg new file mode 100644 index 0000000..231b138 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bluetooth-x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/boat-fill.svg b/phosphor_orig/SVGs Flat/fill/boat-fill.svg new file mode 100644 index 0000000..a97a9cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/boat-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bomb-fill.svg b/phosphor_orig/SVGs Flat/fill/bomb-fill.svg new file mode 100644 index 0000000..ab7c9f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bomb-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bone-fill.svg b/phosphor_orig/SVGs Flat/fill/bone-fill.svg new file mode 100644 index 0000000..254cf69 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bone-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/book-bookmark-fill.svg b/phosphor_orig/SVGs Flat/fill/book-bookmark-fill.svg new file mode 100644 index 0000000..d2d9e20 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/book-bookmark-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/book-fill.svg b/phosphor_orig/SVGs Flat/fill/book-fill.svg new file mode 100644 index 0000000..d366adf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/book-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/book-open-fill.svg b/phosphor_orig/SVGs Flat/fill/book-open-fill.svg new file mode 100644 index 0000000..c732c09 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/book-open-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/book-open-text-fill.svg b/phosphor_orig/SVGs Flat/fill/book-open-text-fill.svg new file mode 100644 index 0000000..14840f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/book-open-text-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/book-user-fill.svg b/phosphor_orig/SVGs Flat/fill/book-user-fill.svg new file mode 100644 index 0000000..5146a67 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/book-user-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bookmark-fill.svg b/phosphor_orig/SVGs Flat/fill/bookmark-fill.svg new file mode 100644 index 0000000..1b8a9d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bookmark-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bookmark-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/bookmark-simple-fill.svg new file mode 100644 index 0000000..df570ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bookmark-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bookmarks-fill.svg b/phosphor_orig/SVGs Flat/fill/bookmarks-fill.svg new file mode 100644 index 0000000..ae1470f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bookmarks-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bookmarks-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/bookmarks-simple-fill.svg new file mode 100644 index 0000000..44d0417 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bookmarks-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/books-fill.svg b/phosphor_orig/SVGs Flat/fill/books-fill.svg new file mode 100644 index 0000000..68b6f17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/books-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/boot-fill.svg b/phosphor_orig/SVGs Flat/fill/boot-fill.svg new file mode 100644 index 0000000..0e99832 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/boot-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/boules-fill.svg b/phosphor_orig/SVGs Flat/fill/boules-fill.svg new file mode 100644 index 0000000..a7e9698 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/boules-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bounding-box-fill.svg b/phosphor_orig/SVGs Flat/fill/bounding-box-fill.svg new file mode 100644 index 0000000..5de489e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bounding-box-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bowl-food-fill.svg b/phosphor_orig/SVGs Flat/fill/bowl-food-fill.svg new file mode 100644 index 0000000..95f5042 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bowl-food-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bowl-steam-fill.svg b/phosphor_orig/SVGs Flat/fill/bowl-steam-fill.svg new file mode 100644 index 0000000..d8b7dbb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bowl-steam-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bowling-ball-fill.svg b/phosphor_orig/SVGs Flat/fill/bowling-ball-fill.svg new file mode 100644 index 0000000..a5d56ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bowling-ball-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/box-arrow-down-fill.svg b/phosphor_orig/SVGs Flat/fill/box-arrow-down-fill.svg new file mode 100644 index 0000000..9ea786c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/box-arrow-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/box-arrow-up-fill.svg b/phosphor_orig/SVGs Flat/fill/box-arrow-up-fill.svg new file mode 100644 index 0000000..2913310 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/box-arrow-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/boxing-glove-fill.svg b/phosphor_orig/SVGs Flat/fill/boxing-glove-fill.svg new file mode 100644 index 0000000..ab66345 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/boxing-glove-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/brackets-angle-fill.svg b/phosphor_orig/SVGs Flat/fill/brackets-angle-fill.svg new file mode 100644 index 0000000..1ef5659 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/brackets-angle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/brackets-curly-fill.svg b/phosphor_orig/SVGs Flat/fill/brackets-curly-fill.svg new file mode 100644 index 0000000..62684ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/brackets-curly-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/brackets-round-fill.svg b/phosphor_orig/SVGs Flat/fill/brackets-round-fill.svg new file mode 100644 index 0000000..b718a82 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/brackets-round-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/brackets-square-fill.svg b/phosphor_orig/SVGs Flat/fill/brackets-square-fill.svg new file mode 100644 index 0000000..363c4d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/brackets-square-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/brain-fill.svg b/phosphor_orig/SVGs Flat/fill/brain-fill.svg new file mode 100644 index 0000000..2cd9872 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/brain-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/brandy-fill.svg b/phosphor_orig/SVGs Flat/fill/brandy-fill.svg new file mode 100644 index 0000000..a26ce40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/brandy-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bread-fill.svg b/phosphor_orig/SVGs Flat/fill/bread-fill.svg new file mode 100644 index 0000000..0f5bede --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bread-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bridge-fill.svg b/phosphor_orig/SVGs Flat/fill/bridge-fill.svg new file mode 100644 index 0000000..ad4e9f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bridge-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/briefcase-fill.svg b/phosphor_orig/SVGs Flat/fill/briefcase-fill.svg new file mode 100644 index 0000000..d90fb68 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/briefcase-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/briefcase-metal-fill.svg b/phosphor_orig/SVGs Flat/fill/briefcase-metal-fill.svg new file mode 100644 index 0000000..f5dc569 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/briefcase-metal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/broadcast-fill.svg b/phosphor_orig/SVGs Flat/fill/broadcast-fill.svg new file mode 100644 index 0000000..b219520 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/broadcast-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/broom-fill.svg b/phosphor_orig/SVGs Flat/fill/broom-fill.svg new file mode 100644 index 0000000..2fabce4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/broom-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/browser-fill.svg b/phosphor_orig/SVGs Flat/fill/browser-fill.svg new file mode 100644 index 0000000..778d338 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/browser-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/browsers-fill.svg b/phosphor_orig/SVGs Flat/fill/browsers-fill.svg new file mode 100644 index 0000000..1cdd3fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/browsers-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bug-beetle-fill.svg b/phosphor_orig/SVGs Flat/fill/bug-beetle-fill.svg new file mode 100644 index 0000000..b8d0c63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bug-beetle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bug-droid-fill.svg b/phosphor_orig/SVGs Flat/fill/bug-droid-fill.svg new file mode 100644 index 0000000..8f1e8e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bug-droid-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bug-fill.svg b/phosphor_orig/SVGs Flat/fill/bug-fill.svg new file mode 100644 index 0000000..1c7e721 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bug-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/building-apartment-fill.svg b/phosphor_orig/SVGs Flat/fill/building-apartment-fill.svg new file mode 100644 index 0000000..ac3102c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/building-apartment-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/building-fill.svg b/phosphor_orig/SVGs Flat/fill/building-fill.svg new file mode 100644 index 0000000..e8254a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/building-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/building-office-fill.svg b/phosphor_orig/SVGs Flat/fill/building-office-fill.svg new file mode 100644 index 0000000..d1a241c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/building-office-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/buildings-fill.svg b/phosphor_orig/SVGs Flat/fill/buildings-fill.svg new file mode 100644 index 0000000..639793f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/buildings-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bulldozer-fill.svg b/phosphor_orig/SVGs Flat/fill/bulldozer-fill.svg new file mode 100644 index 0000000..e78ccd9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bulldozer-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/bus-fill.svg b/phosphor_orig/SVGs Flat/fill/bus-fill.svg new file mode 100644 index 0000000..165a5bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/bus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/butterfly-fill.svg b/phosphor_orig/SVGs Flat/fill/butterfly-fill.svg new file mode 100644 index 0000000..8e25132 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/butterfly-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cable-car-fill.svg b/phosphor_orig/SVGs Flat/fill/cable-car-fill.svg new file mode 100644 index 0000000..ea1abda --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cable-car-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cactus-fill.svg b/phosphor_orig/SVGs Flat/fill/cactus-fill.svg new file mode 100644 index 0000000..544bc04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cactus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cake-fill.svg b/phosphor_orig/SVGs Flat/fill/cake-fill.svg new file mode 100644 index 0000000..4ababe6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cake-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/calculator-fill.svg b/phosphor_orig/SVGs Flat/fill/calculator-fill.svg new file mode 100644 index 0000000..3f2f3ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/calculator-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/calendar-blank-fill.svg b/phosphor_orig/SVGs Flat/fill/calendar-blank-fill.svg new file mode 100644 index 0000000..bfc1e28 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/calendar-blank-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/calendar-check-fill.svg b/phosphor_orig/SVGs Flat/fill/calendar-check-fill.svg new file mode 100644 index 0000000..5205bf9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/calendar-check-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/calendar-dot-fill.svg b/phosphor_orig/SVGs Flat/fill/calendar-dot-fill.svg new file mode 100644 index 0000000..a36fd67 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/calendar-dot-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/calendar-dots-fill.svg b/phosphor_orig/SVGs Flat/fill/calendar-dots-fill.svg new file mode 100644 index 0000000..d82e441 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/calendar-dots-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/calendar-fill.svg b/phosphor_orig/SVGs Flat/fill/calendar-fill.svg new file mode 100644 index 0000000..16990b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/calendar-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/calendar-heart-fill.svg b/phosphor_orig/SVGs Flat/fill/calendar-heart-fill.svg new file mode 100644 index 0000000..0cccdfe --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/calendar-heart-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/calendar-minus-fill.svg b/phosphor_orig/SVGs Flat/fill/calendar-minus-fill.svg new file mode 100644 index 0000000..0c6e3d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/calendar-minus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/calendar-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/calendar-plus-fill.svg new file mode 100644 index 0000000..0176a58 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/calendar-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/calendar-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/calendar-slash-fill.svg new file mode 100644 index 0000000..207b635 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/calendar-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/calendar-star-fill.svg b/phosphor_orig/SVGs Flat/fill/calendar-star-fill.svg new file mode 100644 index 0000000..e752708 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/calendar-star-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/calendar-x-fill.svg b/phosphor_orig/SVGs Flat/fill/calendar-x-fill.svg new file mode 100644 index 0000000..ddf7305 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/calendar-x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/call-bell-fill.svg b/phosphor_orig/SVGs Flat/fill/call-bell-fill.svg new file mode 100644 index 0000000..6ae6680 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/call-bell-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/camera-fill.svg b/phosphor_orig/SVGs Flat/fill/camera-fill.svg new file mode 100644 index 0000000..a0feec5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/camera-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/camera-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/camera-plus-fill.svg new file mode 100644 index 0000000..7f06c15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/camera-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/camera-rotate-fill.svg b/phosphor_orig/SVGs Flat/fill/camera-rotate-fill.svg new file mode 100644 index 0000000..a6e61f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/camera-rotate-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/camera-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/camera-slash-fill.svg new file mode 100644 index 0000000..6c3ac43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/camera-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/campfire-fill.svg b/phosphor_orig/SVGs Flat/fill/campfire-fill.svg new file mode 100644 index 0000000..f480fb0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/campfire-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/car-battery-fill.svg b/phosphor_orig/SVGs Flat/fill/car-battery-fill.svg new file mode 100644 index 0000000..560fd4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/car-battery-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/car-fill.svg b/phosphor_orig/SVGs Flat/fill/car-fill.svg new file mode 100644 index 0000000..027aa15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/car-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/car-profile-fill.svg b/phosphor_orig/SVGs Flat/fill/car-profile-fill.svg new file mode 100644 index 0000000..8f894e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/car-profile-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/car-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/car-simple-fill.svg new file mode 100644 index 0000000..2c28bfd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/car-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cardholder-fill.svg b/phosphor_orig/SVGs Flat/fill/cardholder-fill.svg new file mode 100644 index 0000000..b446bf6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cardholder-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cards-fill.svg b/phosphor_orig/SVGs Flat/fill/cards-fill.svg new file mode 100644 index 0000000..d824d98 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cards-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cards-three-fill.svg b/phosphor_orig/SVGs Flat/fill/cards-three-fill.svg new file mode 100644 index 0000000..787eccf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cards-three-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-circle-double-down-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-circle-double-down-fill.svg new file mode 100644 index 0000000..af08732 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-circle-double-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-circle-double-left-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-circle-double-left-fill.svg new file mode 100644 index 0000000..56a8822 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-circle-double-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-circle-double-right-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-circle-double-right-fill.svg new file mode 100644 index 0000000..bce0002 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-circle-double-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-circle-double-up-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-circle-double-up-fill.svg new file mode 100644 index 0000000..d9cb653 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-circle-double-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-circle-down-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-circle-down-fill.svg new file mode 100644 index 0000000..cb54037 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-circle-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-circle-left-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-circle-left-fill.svg new file mode 100644 index 0000000..788638b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-circle-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-circle-right-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-circle-right-fill.svg new file mode 100644 index 0000000..85b7433 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-circle-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-circle-up-down-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-circle-up-down-fill.svg new file mode 100644 index 0000000..54366e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-circle-up-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-circle-up-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-circle-up-fill.svg new file mode 100644 index 0000000..1ff10a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-circle-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-double-down-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-double-down-fill.svg new file mode 100644 index 0000000..173f8f0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-double-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-double-left-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-double-left-fill.svg new file mode 100644 index 0000000..b79589e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-double-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-double-right-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-double-right-fill.svg new file mode 100644 index 0000000..e58e910 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-double-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-double-up-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-double-up-fill.svg new file mode 100644 index 0000000..ff7463a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-double-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-down-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-down-fill.svg new file mode 100644 index 0000000..a48d9b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-left-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-left-fill.svg new file mode 100644 index 0000000..8fccd75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-line-down-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-line-down-fill.svg new file mode 100644 index 0000000..77b66e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-line-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-line-left-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-line-left-fill.svg new file mode 100644 index 0000000..b89145b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-line-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-line-right-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-line-right-fill.svg new file mode 100644 index 0000000..ebd1a59 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-line-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-line-up-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-line-up-fill.svg new file mode 100644 index 0000000..36572c2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-line-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-right-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-right-fill.svg new file mode 100644 index 0000000..41eaa04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-up-down-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-up-down-fill.svg new file mode 100644 index 0000000..981a592 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-up-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/caret-up-fill.svg b/phosphor_orig/SVGs Flat/fill/caret-up-fill.svg new file mode 100644 index 0000000..33ab054 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/caret-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/carrot-fill.svg b/phosphor_orig/SVGs Flat/fill/carrot-fill.svg new file mode 100644 index 0000000..0468e57 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/carrot-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cash-register-fill.svg b/phosphor_orig/SVGs Flat/fill/cash-register-fill.svg new file mode 100644 index 0000000..be4fb9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cash-register-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cassette-tape-fill.svg b/phosphor_orig/SVGs Flat/fill/cassette-tape-fill.svg new file mode 100644 index 0000000..409ccbb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cassette-tape-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/castle-turret-fill.svg b/phosphor_orig/SVGs Flat/fill/castle-turret-fill.svg new file mode 100644 index 0000000..eda8dbc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/castle-turret-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cat-fill.svg b/phosphor_orig/SVGs Flat/fill/cat-fill.svg new file mode 100644 index 0000000..1d65bb7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cat-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cell-signal-full-fill.svg b/phosphor_orig/SVGs Flat/fill/cell-signal-full-fill.svg new file mode 100644 index 0000000..676b50f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cell-signal-full-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cell-signal-high-fill.svg b/phosphor_orig/SVGs Flat/fill/cell-signal-high-fill.svg new file mode 100644 index 0000000..9bb164f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cell-signal-high-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cell-signal-low-fill.svg b/phosphor_orig/SVGs Flat/fill/cell-signal-low-fill.svg new file mode 100644 index 0000000..0d52dea --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cell-signal-low-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cell-signal-medium-fill.svg b/phosphor_orig/SVGs Flat/fill/cell-signal-medium-fill.svg new file mode 100644 index 0000000..e914900 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cell-signal-medium-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cell-signal-none-fill.svg b/phosphor_orig/SVGs Flat/fill/cell-signal-none-fill.svg new file mode 100644 index 0000000..4cf2bff --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cell-signal-none-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cell-signal-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/cell-signal-slash-fill.svg new file mode 100644 index 0000000..1347f1b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cell-signal-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cell-signal-x-fill.svg b/phosphor_orig/SVGs Flat/fill/cell-signal-x-fill.svg new file mode 100644 index 0000000..dfd2ac8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cell-signal-x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cell-tower-fill.svg b/phosphor_orig/SVGs Flat/fill/cell-tower-fill.svg new file mode 100644 index 0000000..1e46489 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cell-tower-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/certificate-fill.svg b/phosphor_orig/SVGs Flat/fill/certificate-fill.svg new file mode 100644 index 0000000..52ac7f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/certificate-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chair-fill.svg b/phosphor_orig/SVGs Flat/fill/chair-fill.svg new file mode 100644 index 0000000..1b5cbb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chair-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chalkboard-fill.svg b/phosphor_orig/SVGs Flat/fill/chalkboard-fill.svg new file mode 100644 index 0000000..38b7a5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chalkboard-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chalkboard-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/chalkboard-simple-fill.svg new file mode 100644 index 0000000..ec0240f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chalkboard-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chalkboard-teacher-fill.svg b/phosphor_orig/SVGs Flat/fill/chalkboard-teacher-fill.svg new file mode 100644 index 0000000..4083bc1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chalkboard-teacher-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/champagne-fill.svg b/phosphor_orig/SVGs Flat/fill/champagne-fill.svg new file mode 100644 index 0000000..ffb26f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/champagne-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/charging-station-fill.svg b/phosphor_orig/SVGs Flat/fill/charging-station-fill.svg new file mode 100644 index 0000000..4c8516a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/charging-station-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chart-bar-fill.svg b/phosphor_orig/SVGs Flat/fill/chart-bar-fill.svg new file mode 100644 index 0000000..2ef0770 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chart-bar-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chart-bar-horizontal-fill.svg b/phosphor_orig/SVGs Flat/fill/chart-bar-horizontal-fill.svg new file mode 100644 index 0000000..04d5908 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chart-bar-horizontal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chart-donut-fill.svg b/phosphor_orig/SVGs Flat/fill/chart-donut-fill.svg new file mode 100644 index 0000000..fbe2803 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chart-donut-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chart-line-down-fill.svg b/phosphor_orig/SVGs Flat/fill/chart-line-down-fill.svg new file mode 100644 index 0000000..9e33fe5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chart-line-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chart-line-fill.svg b/phosphor_orig/SVGs Flat/fill/chart-line-fill.svg new file mode 100644 index 0000000..0772fe4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chart-line-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chart-line-up-fill.svg b/phosphor_orig/SVGs Flat/fill/chart-line-up-fill.svg new file mode 100644 index 0000000..7248eb2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chart-line-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chart-pie-fill.svg b/phosphor_orig/SVGs Flat/fill/chart-pie-fill.svg new file mode 100644 index 0000000..7f965aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chart-pie-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chart-pie-slice-fill.svg b/phosphor_orig/SVGs Flat/fill/chart-pie-slice-fill.svg new file mode 100644 index 0000000..de7e84a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chart-pie-slice-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chart-polar-fill.svg b/phosphor_orig/SVGs Flat/fill/chart-polar-fill.svg new file mode 100644 index 0000000..51e9288 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chart-polar-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chart-scatter-fill.svg b/phosphor_orig/SVGs Flat/fill/chart-scatter-fill.svg new file mode 100644 index 0000000..6178c8e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chart-scatter-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-centered-dots-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-centered-dots-fill.svg new file mode 100644 index 0000000..d1f5171 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-centered-dots-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-centered-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-centered-fill.svg new file mode 100644 index 0000000..955a87c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-centered-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-centered-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-centered-slash-fill.svg new file mode 100644 index 0000000..39dfd84 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-centered-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-centered-text-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-centered-text-fill.svg new file mode 100644 index 0000000..ae28d8d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-centered-text-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-circle-dots-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-circle-dots-fill.svg new file mode 100644 index 0000000..1639316 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-circle-dots-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-circle-fill.svg new file mode 100644 index 0000000..4a54055 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-circle-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-circle-slash-fill.svg new file mode 100644 index 0000000..4c91646 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-circle-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-circle-text-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-circle-text-fill.svg new file mode 100644 index 0000000..2396397 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-circle-text-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-dots-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-dots-fill.svg new file mode 100644 index 0000000..715810d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-dots-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-fill.svg new file mode 100644 index 0000000..075b05b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-slash-fill.svg new file mode 100644 index 0000000..5d55fb2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-teardrop-dots-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-teardrop-dots-fill.svg new file mode 100644 index 0000000..a98f1b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-teardrop-dots-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-teardrop-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-teardrop-fill.svg new file mode 100644 index 0000000..701637f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-teardrop-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-teardrop-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-teardrop-slash-fill.svg new file mode 100644 index 0000000..7263804 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-teardrop-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-teardrop-text-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-teardrop-text-fill.svg new file mode 100644 index 0000000..a0f7f39 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-teardrop-text-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chat-text-fill.svg b/phosphor_orig/SVGs Flat/fill/chat-text-fill.svg new file mode 100644 index 0000000..73f80c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chat-text-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chats-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/chats-circle-fill.svg new file mode 100644 index 0000000..314ba32 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chats-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chats-fill.svg b/phosphor_orig/SVGs Flat/fill/chats-fill.svg new file mode 100644 index 0000000..5847dec --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chats-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chats-teardrop-fill.svg b/phosphor_orig/SVGs Flat/fill/chats-teardrop-fill.svg new file mode 100644 index 0000000..dd762ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chats-teardrop-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/check-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/check-circle-fill.svg new file mode 100644 index 0000000..ee1317c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/check-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/check-fat-fill.svg b/phosphor_orig/SVGs Flat/fill/check-fat-fill.svg new file mode 100644 index 0000000..4237afa --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/check-fat-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/check-fill.svg b/phosphor_orig/SVGs Flat/fill/check-fill.svg new file mode 100644 index 0000000..e5ec744 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/check-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/check-square-fill.svg b/phosphor_orig/SVGs Flat/fill/check-square-fill.svg new file mode 100644 index 0000000..6f61558 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/check-square-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/check-square-offset-fill.svg b/phosphor_orig/SVGs Flat/fill/check-square-offset-fill.svg new file mode 100644 index 0000000..56ba5f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/check-square-offset-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/checkerboard-fill.svg b/phosphor_orig/SVGs Flat/fill/checkerboard-fill.svg new file mode 100644 index 0000000..9a25fb5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/checkerboard-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/checks-fill.svg b/phosphor_orig/SVGs Flat/fill/checks-fill.svg new file mode 100644 index 0000000..c112d56 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/checks-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cheers-fill.svg b/phosphor_orig/SVGs Flat/fill/cheers-fill.svg new file mode 100644 index 0000000..4cbec10 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cheers-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cheese-fill.svg b/phosphor_orig/SVGs Flat/fill/cheese-fill.svg new file mode 100644 index 0000000..155cf21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cheese-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/chef-hat-fill.svg b/phosphor_orig/SVGs Flat/fill/chef-hat-fill.svg new file mode 100644 index 0000000..305b6b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/chef-hat-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cherries-fill.svg b/phosphor_orig/SVGs Flat/fill/cherries-fill.svg new file mode 100644 index 0000000..4c87a88 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cherries-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/church-fill.svg b/phosphor_orig/SVGs Flat/fill/church-fill.svg new file mode 100644 index 0000000..576dce5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/church-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cigarette-fill.svg b/phosphor_orig/SVGs Flat/fill/cigarette-fill.svg new file mode 100644 index 0000000..9e7f509 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cigarette-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cigarette-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/cigarette-slash-fill.svg new file mode 100644 index 0000000..681de8b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cigarette-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/circle-dashed-fill.svg b/phosphor_orig/SVGs Flat/fill/circle-dashed-fill.svg new file mode 100644 index 0000000..c144fc0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/circle-dashed-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/circle-fill.svg b/phosphor_orig/SVGs Flat/fill/circle-fill.svg new file mode 100644 index 0000000..ef26a83 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/circle-half-fill.svg b/phosphor_orig/SVGs Flat/fill/circle-half-fill.svg new file mode 100644 index 0000000..a446912 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/circle-half-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/circle-half-tilt-fill.svg b/phosphor_orig/SVGs Flat/fill/circle-half-tilt-fill.svg new file mode 100644 index 0000000..97e975d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/circle-half-tilt-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/circle-notch-fill.svg b/phosphor_orig/SVGs Flat/fill/circle-notch-fill.svg new file mode 100644 index 0000000..f98862d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/circle-notch-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/circles-four-fill.svg b/phosphor_orig/SVGs Flat/fill/circles-four-fill.svg new file mode 100644 index 0000000..73a8aac --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/circles-four-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/circles-three-fill.svg b/phosphor_orig/SVGs Flat/fill/circles-three-fill.svg new file mode 100644 index 0000000..5ccbc44 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/circles-three-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/circles-three-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/circles-three-plus-fill.svg new file mode 100644 index 0000000..b669c5b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/circles-three-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/circuitry-fill.svg b/phosphor_orig/SVGs Flat/fill/circuitry-fill.svg new file mode 100644 index 0000000..998e530 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/circuitry-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/city-fill.svg b/phosphor_orig/SVGs Flat/fill/city-fill.svg new file mode 100644 index 0000000..69a7fd7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/city-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/clipboard-fill.svg b/phosphor_orig/SVGs Flat/fill/clipboard-fill.svg new file mode 100644 index 0000000..2d3a211 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/clipboard-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/clipboard-text-fill.svg b/phosphor_orig/SVGs Flat/fill/clipboard-text-fill.svg new file mode 100644 index 0000000..01b5647 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/clipboard-text-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/clock-afternoon-fill.svg b/phosphor_orig/SVGs Flat/fill/clock-afternoon-fill.svg new file mode 100644 index 0000000..76da7ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/clock-afternoon-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/clock-clockwise-fill.svg b/phosphor_orig/SVGs Flat/fill/clock-clockwise-fill.svg new file mode 100644 index 0000000..00544eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/clock-clockwise-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/clock-countdown-fill.svg b/phosphor_orig/SVGs Flat/fill/clock-countdown-fill.svg new file mode 100644 index 0000000..a82e99f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/clock-countdown-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/clock-counter-clockwise-fill.svg b/phosphor_orig/SVGs Flat/fill/clock-counter-clockwise-fill.svg new file mode 100644 index 0000000..d7e21e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/clock-counter-clockwise-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/clock-fill.svg b/phosphor_orig/SVGs Flat/fill/clock-fill.svg new file mode 100644 index 0000000..329df68 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/clock-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/clock-user-fill.svg b/phosphor_orig/SVGs Flat/fill/clock-user-fill.svg new file mode 100644 index 0000000..8c2199a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/clock-user-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/closed-captioning-fill.svg b/phosphor_orig/SVGs Flat/fill/closed-captioning-fill.svg new file mode 100644 index 0000000..5cc1df3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/closed-captioning-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cloud-arrow-down-fill.svg b/phosphor_orig/SVGs Flat/fill/cloud-arrow-down-fill.svg new file mode 100644 index 0000000..51366bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cloud-arrow-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cloud-arrow-up-fill.svg b/phosphor_orig/SVGs Flat/fill/cloud-arrow-up-fill.svg new file mode 100644 index 0000000..86b50bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cloud-arrow-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cloud-check-fill.svg b/phosphor_orig/SVGs Flat/fill/cloud-check-fill.svg new file mode 100644 index 0000000..f6cc3b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cloud-check-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cloud-fill.svg b/phosphor_orig/SVGs Flat/fill/cloud-fill.svg new file mode 100644 index 0000000..25a9fc6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cloud-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cloud-fog-fill.svg b/phosphor_orig/SVGs Flat/fill/cloud-fog-fill.svg new file mode 100644 index 0000000..f212ce4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cloud-fog-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cloud-lightning-fill.svg b/phosphor_orig/SVGs Flat/fill/cloud-lightning-fill.svg new file mode 100644 index 0000000..772dc73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cloud-lightning-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cloud-moon-fill.svg b/phosphor_orig/SVGs Flat/fill/cloud-moon-fill.svg new file mode 100644 index 0000000..c3c7e06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cloud-moon-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cloud-rain-fill.svg b/phosphor_orig/SVGs Flat/fill/cloud-rain-fill.svg new file mode 100644 index 0000000..db409b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cloud-rain-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cloud-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/cloud-slash-fill.svg new file mode 100644 index 0000000..e1c91bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cloud-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cloud-snow-fill.svg b/phosphor_orig/SVGs Flat/fill/cloud-snow-fill.svg new file mode 100644 index 0000000..2ab79ff --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cloud-snow-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cloud-sun-fill.svg b/phosphor_orig/SVGs Flat/fill/cloud-sun-fill.svg new file mode 100644 index 0000000..f5053e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cloud-sun-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cloud-warning-fill.svg b/phosphor_orig/SVGs Flat/fill/cloud-warning-fill.svg new file mode 100644 index 0000000..7e10a49 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cloud-warning-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cloud-x-fill.svg b/phosphor_orig/SVGs Flat/fill/cloud-x-fill.svg new file mode 100644 index 0000000..633f30a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cloud-x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/clover-fill.svg b/phosphor_orig/SVGs Flat/fill/clover-fill.svg new file mode 100644 index 0000000..fe4e753 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/clover-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/club-fill.svg b/phosphor_orig/SVGs Flat/fill/club-fill.svg new file mode 100644 index 0000000..83e3137 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/club-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/coat-hanger-fill.svg b/phosphor_orig/SVGs Flat/fill/coat-hanger-fill.svg new file mode 100644 index 0000000..9685642 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/coat-hanger-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/coda-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/coda-logo-fill.svg new file mode 100644 index 0000000..838c85e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/coda-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/code-block-fill.svg b/phosphor_orig/SVGs Flat/fill/code-block-fill.svg new file mode 100644 index 0000000..b7d7e5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/code-block-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/code-fill.svg b/phosphor_orig/SVGs Flat/fill/code-fill.svg new file mode 100644 index 0000000..085df99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/code-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/code-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/code-simple-fill.svg new file mode 100644 index 0000000..ec8ee55 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/code-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/codepen-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/codepen-logo-fill.svg new file mode 100644 index 0000000..0e1ae14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/codepen-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/codesandbox-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/codesandbox-logo-fill.svg new file mode 100644 index 0000000..451ad73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/codesandbox-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/coffee-bean-fill.svg b/phosphor_orig/SVGs Flat/fill/coffee-bean-fill.svg new file mode 100644 index 0000000..932a725 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/coffee-bean-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/coffee-fill.svg b/phosphor_orig/SVGs Flat/fill/coffee-fill.svg new file mode 100644 index 0000000..800dd39 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/coffee-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/coin-fill.svg b/phosphor_orig/SVGs Flat/fill/coin-fill.svg new file mode 100644 index 0000000..80504d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/coin-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/coin-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/coin-vertical-fill.svg new file mode 100644 index 0000000..b38fa8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/coin-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/coins-fill.svg b/phosphor_orig/SVGs Flat/fill/coins-fill.svg new file mode 100644 index 0000000..f594711 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/coins-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/columns-fill.svg b/phosphor_orig/SVGs Flat/fill/columns-fill.svg new file mode 100644 index 0000000..08c619e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/columns-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/columns-plus-left-fill.svg b/phosphor_orig/SVGs Flat/fill/columns-plus-left-fill.svg new file mode 100644 index 0000000..bf74fa4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/columns-plus-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/columns-plus-right-fill.svg b/phosphor_orig/SVGs Flat/fill/columns-plus-right-fill.svg new file mode 100644 index 0000000..f8148c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/columns-plus-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/command-fill.svg b/phosphor_orig/SVGs Flat/fill/command-fill.svg new file mode 100644 index 0000000..af24f7e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/command-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/compass-fill.svg b/phosphor_orig/SVGs Flat/fill/compass-fill.svg new file mode 100644 index 0000000..d941cd6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/compass-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/compass-rose-fill.svg b/phosphor_orig/SVGs Flat/fill/compass-rose-fill.svg new file mode 100644 index 0000000..1c9b77d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/compass-rose-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/compass-tool-fill.svg b/phosphor_orig/SVGs Flat/fill/compass-tool-fill.svg new file mode 100644 index 0000000..ee11bce --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/compass-tool-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/computer-tower-fill.svg b/phosphor_orig/SVGs Flat/fill/computer-tower-fill.svg new file mode 100644 index 0000000..bcc7096 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/computer-tower-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/confetti-fill.svg b/phosphor_orig/SVGs Flat/fill/confetti-fill.svg new file mode 100644 index 0000000..6dfa415 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/confetti-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/contactless-payment-fill.svg b/phosphor_orig/SVGs Flat/fill/contactless-payment-fill.svg new file mode 100644 index 0000000..69dd524 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/contactless-payment-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/control-fill.svg b/phosphor_orig/SVGs Flat/fill/control-fill.svg new file mode 100644 index 0000000..abc7ebf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/control-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cookie-fill.svg b/phosphor_orig/SVGs Flat/fill/cookie-fill.svg new file mode 100644 index 0000000..73f889a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cookie-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cooking-pot-fill.svg b/phosphor_orig/SVGs Flat/fill/cooking-pot-fill.svg new file mode 100644 index 0000000..aca2056 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cooking-pot-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/copy-fill.svg b/phosphor_orig/SVGs Flat/fill/copy-fill.svg new file mode 100644 index 0000000..bcd73b0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/copy-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/copy-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/copy-simple-fill.svg new file mode 100644 index 0000000..43d31c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/copy-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/copyleft-fill.svg b/phosphor_orig/SVGs Flat/fill/copyleft-fill.svg new file mode 100644 index 0000000..2a90e16 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/copyleft-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/copyright-fill.svg b/phosphor_orig/SVGs Flat/fill/copyright-fill.svg new file mode 100644 index 0000000..5284595 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/copyright-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/corners-in-fill.svg b/phosphor_orig/SVGs Flat/fill/corners-in-fill.svg new file mode 100644 index 0000000..1c53561 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/corners-in-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/corners-out-fill.svg b/phosphor_orig/SVGs Flat/fill/corners-out-fill.svg new file mode 100644 index 0000000..8892fec --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/corners-out-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/couch-fill.svg b/phosphor_orig/SVGs Flat/fill/couch-fill.svg new file mode 100644 index 0000000..410d22f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/couch-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/court-basketball-fill.svg b/phosphor_orig/SVGs Flat/fill/court-basketball-fill.svg new file mode 100644 index 0000000..7265226 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/court-basketball-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cow-fill.svg b/phosphor_orig/SVGs Flat/fill/cow-fill.svg new file mode 100644 index 0000000..ba061ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cow-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cowboy-hat-fill.svg b/phosphor_orig/SVGs Flat/fill/cowboy-hat-fill.svg new file mode 100644 index 0000000..743c62b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cowboy-hat-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cpu-fill.svg b/phosphor_orig/SVGs Flat/fill/cpu-fill.svg new file mode 100644 index 0000000..603ed22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cpu-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/crane-fill.svg b/phosphor_orig/SVGs Flat/fill/crane-fill.svg new file mode 100644 index 0000000..d7910a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/crane-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/crane-tower-fill.svg b/phosphor_orig/SVGs Flat/fill/crane-tower-fill.svg new file mode 100644 index 0000000..aacde2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/crane-tower-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/credit-card-fill.svg b/phosphor_orig/SVGs Flat/fill/credit-card-fill.svg new file mode 100644 index 0000000..6aa64a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/credit-card-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cricket-fill.svg b/phosphor_orig/SVGs Flat/fill/cricket-fill.svg new file mode 100644 index 0000000..6081952 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cricket-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/crop-fill.svg b/phosphor_orig/SVGs Flat/fill/crop-fill.svg new file mode 100644 index 0000000..5b88bd3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/crop-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cross-fill.svg b/phosphor_orig/SVGs Flat/fill/cross-fill.svg new file mode 100644 index 0000000..e14f6da --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cross-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/crosshair-fill.svg b/phosphor_orig/SVGs Flat/fill/crosshair-fill.svg new file mode 100644 index 0000000..7707621 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/crosshair-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/crosshair-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/crosshair-simple-fill.svg new file mode 100644 index 0000000..e3dc354 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/crosshair-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/crown-cross-fill.svg b/phosphor_orig/SVGs Flat/fill/crown-cross-fill.svg new file mode 100644 index 0000000..0e6bffd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/crown-cross-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/crown-fill.svg b/phosphor_orig/SVGs Flat/fill/crown-fill.svg new file mode 100644 index 0000000..e45c9cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/crown-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/crown-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/crown-simple-fill.svg new file mode 100644 index 0000000..7fbfcd1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/crown-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cube-fill.svg b/phosphor_orig/SVGs Flat/fill/cube-fill.svg new file mode 100644 index 0000000..0067d70 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cube-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cube-focus-fill.svg b/phosphor_orig/SVGs Flat/fill/cube-focus-fill.svg new file mode 100644 index 0000000..a94604b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cube-focus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cube-transparent-fill.svg b/phosphor_orig/SVGs Flat/fill/cube-transparent-fill.svg new file mode 100644 index 0000000..965e97c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cube-transparent-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/currency-btc-fill.svg b/phosphor_orig/SVGs Flat/fill/currency-btc-fill.svg new file mode 100644 index 0000000..58e1bda --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/currency-btc-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/currency-circle-dollar-fill.svg b/phosphor_orig/SVGs Flat/fill/currency-circle-dollar-fill.svg new file mode 100644 index 0000000..8548b4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/currency-circle-dollar-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/currency-cny-fill.svg b/phosphor_orig/SVGs Flat/fill/currency-cny-fill.svg new file mode 100644 index 0000000..39a0d08 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/currency-cny-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/currency-dollar-fill.svg b/phosphor_orig/SVGs Flat/fill/currency-dollar-fill.svg new file mode 100644 index 0000000..4e9be29 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/currency-dollar-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/currency-dollar-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/currency-dollar-simple-fill.svg new file mode 100644 index 0000000..fe4448a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/currency-dollar-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/currency-eth-fill.svg b/phosphor_orig/SVGs Flat/fill/currency-eth-fill.svg new file mode 100644 index 0000000..a824916 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/currency-eth-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/currency-eur-fill.svg b/phosphor_orig/SVGs Flat/fill/currency-eur-fill.svg new file mode 100644 index 0000000..d480d5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/currency-eur-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/currency-gbp-fill.svg b/phosphor_orig/SVGs Flat/fill/currency-gbp-fill.svg new file mode 100644 index 0000000..6b8ece1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/currency-gbp-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/currency-inr-fill.svg b/phosphor_orig/SVGs Flat/fill/currency-inr-fill.svg new file mode 100644 index 0000000..e9fa22b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/currency-inr-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/currency-jpy-fill.svg b/phosphor_orig/SVGs Flat/fill/currency-jpy-fill.svg new file mode 100644 index 0000000..fea85d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/currency-jpy-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/currency-krw-fill.svg b/phosphor_orig/SVGs Flat/fill/currency-krw-fill.svg new file mode 100644 index 0000000..e76f05a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/currency-krw-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/currency-kzt-fill.svg b/phosphor_orig/SVGs Flat/fill/currency-kzt-fill.svg new file mode 100644 index 0000000..ee44fb7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/currency-kzt-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/currency-ngn-fill.svg b/phosphor_orig/SVGs Flat/fill/currency-ngn-fill.svg new file mode 100644 index 0000000..1192ff6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/currency-ngn-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/currency-rub-fill.svg b/phosphor_orig/SVGs Flat/fill/currency-rub-fill.svg new file mode 100644 index 0000000..b09d25b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/currency-rub-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cursor-click-fill.svg b/phosphor_orig/SVGs Flat/fill/cursor-click-fill.svg new file mode 100644 index 0000000..888120c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cursor-click-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cursor-fill.svg b/phosphor_orig/SVGs Flat/fill/cursor-fill.svg new file mode 100644 index 0000000..251e41f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cursor-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cursor-text-fill.svg b/phosphor_orig/SVGs Flat/fill/cursor-text-fill.svg new file mode 100644 index 0000000..bb967f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cursor-text-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/cylinder-fill.svg b/phosphor_orig/SVGs Flat/fill/cylinder-fill.svg new file mode 100644 index 0000000..b3119c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/cylinder-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/database-fill.svg b/phosphor_orig/SVGs Flat/fill/database-fill.svg new file mode 100644 index 0000000..17a5428 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/database-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/desk-fill.svg b/phosphor_orig/SVGs Flat/fill/desk-fill.svg new file mode 100644 index 0000000..2f57475 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/desk-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/desktop-fill.svg b/phosphor_orig/SVGs Flat/fill/desktop-fill.svg new file mode 100644 index 0000000..399d548 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/desktop-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/desktop-tower-fill.svg b/phosphor_orig/SVGs Flat/fill/desktop-tower-fill.svg new file mode 100644 index 0000000..49277f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/desktop-tower-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/detective-fill.svg b/phosphor_orig/SVGs Flat/fill/detective-fill.svg new file mode 100644 index 0000000..4510225 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/detective-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dev-to-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/dev-to-logo-fill.svg new file mode 100644 index 0000000..72711cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dev-to-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/device-mobile-camera-fill.svg b/phosphor_orig/SVGs Flat/fill/device-mobile-camera-fill.svg new file mode 100644 index 0000000..286b538 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/device-mobile-camera-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/device-mobile-fill.svg b/phosphor_orig/SVGs Flat/fill/device-mobile-fill.svg new file mode 100644 index 0000000..89b43ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/device-mobile-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/device-mobile-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/device-mobile-slash-fill.svg new file mode 100644 index 0000000..fb4a1ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/device-mobile-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/device-mobile-speaker-fill.svg b/phosphor_orig/SVGs Flat/fill/device-mobile-speaker-fill.svg new file mode 100644 index 0000000..71dc14b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/device-mobile-speaker-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/device-rotate-fill.svg b/phosphor_orig/SVGs Flat/fill/device-rotate-fill.svg new file mode 100644 index 0000000..1f56556 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/device-rotate-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/device-tablet-camera-fill.svg b/phosphor_orig/SVGs Flat/fill/device-tablet-camera-fill.svg new file mode 100644 index 0000000..7caea25 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/device-tablet-camera-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/device-tablet-fill.svg b/phosphor_orig/SVGs Flat/fill/device-tablet-fill.svg new file mode 100644 index 0000000..96df576 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/device-tablet-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/device-tablet-speaker-fill.svg b/phosphor_orig/SVGs Flat/fill/device-tablet-speaker-fill.svg new file mode 100644 index 0000000..52fd798 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/device-tablet-speaker-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/devices-fill.svg b/phosphor_orig/SVGs Flat/fill/devices-fill.svg new file mode 100644 index 0000000..461503a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/devices-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/diamond-fill.svg b/phosphor_orig/SVGs Flat/fill/diamond-fill.svg new file mode 100644 index 0000000..1aa75cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/diamond-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/diamonds-four-fill.svg b/phosphor_orig/SVGs Flat/fill/diamonds-four-fill.svg new file mode 100644 index 0000000..9329c1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/diamonds-four-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dice-five-fill.svg b/phosphor_orig/SVGs Flat/fill/dice-five-fill.svg new file mode 100644 index 0000000..e9db605 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dice-five-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dice-four-fill.svg b/phosphor_orig/SVGs Flat/fill/dice-four-fill.svg new file mode 100644 index 0000000..2fc75bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dice-four-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dice-one-fill.svg b/phosphor_orig/SVGs Flat/fill/dice-one-fill.svg new file mode 100644 index 0000000..220dfc1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dice-one-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dice-six-fill.svg b/phosphor_orig/SVGs Flat/fill/dice-six-fill.svg new file mode 100644 index 0000000..ea5cfa9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dice-six-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dice-three-fill.svg b/phosphor_orig/SVGs Flat/fill/dice-three-fill.svg new file mode 100644 index 0000000..a48dffa --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dice-three-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dice-two-fill.svg b/phosphor_orig/SVGs Flat/fill/dice-two-fill.svg new file mode 100644 index 0000000..fe7737e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dice-two-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/disc-fill.svg b/phosphor_orig/SVGs Flat/fill/disc-fill.svg new file mode 100644 index 0000000..6811167 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/disc-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/disco-ball-fill.svg b/phosphor_orig/SVGs Flat/fill/disco-ball-fill.svg new file mode 100644 index 0000000..31e035b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/disco-ball-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/discord-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/discord-logo-fill.svg new file mode 100644 index 0000000..5c5fe86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/discord-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/divide-fill.svg b/phosphor_orig/SVGs Flat/fill/divide-fill.svg new file mode 100644 index 0000000..942569a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/divide-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dna-fill.svg b/phosphor_orig/SVGs Flat/fill/dna-fill.svg new file mode 100644 index 0000000..1829087 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dna-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dog-fill.svg b/phosphor_orig/SVGs Flat/fill/dog-fill.svg new file mode 100644 index 0000000..7fc15e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dog-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/door-fill.svg b/phosphor_orig/SVGs Flat/fill/door-fill.svg new file mode 100644 index 0000000..a65dd57 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/door-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/door-open-fill.svg b/phosphor_orig/SVGs Flat/fill/door-open-fill.svg new file mode 100644 index 0000000..6d6909b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/door-open-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dot-fill.svg b/phosphor_orig/SVGs Flat/fill/dot-fill.svg new file mode 100644 index 0000000..5640304 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dot-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dot-outline-fill.svg b/phosphor_orig/SVGs Flat/fill/dot-outline-fill.svg new file mode 100644 index 0000000..34b62a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dot-outline-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dots-nine-fill.svg b/phosphor_orig/SVGs Flat/fill/dots-nine-fill.svg new file mode 100644 index 0000000..3807e80 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dots-nine-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dots-six-fill.svg b/phosphor_orig/SVGs Flat/fill/dots-six-fill.svg new file mode 100644 index 0000000..98d8433 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dots-six-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dots-six-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/dots-six-vertical-fill.svg new file mode 100644 index 0000000..5a7638d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dots-six-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dots-three-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/dots-three-circle-fill.svg new file mode 100644 index 0000000..1665e8e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dots-three-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dots-three-circle-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/dots-three-circle-vertical-fill.svg new file mode 100644 index 0000000..52da826 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dots-three-circle-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dots-three-fill.svg b/phosphor_orig/SVGs Flat/fill/dots-three-fill.svg new file mode 100644 index 0000000..5f0ea6b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dots-three-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dots-three-outline-fill.svg b/phosphor_orig/SVGs Flat/fill/dots-three-outline-fill.svg new file mode 100644 index 0000000..f327ec9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dots-three-outline-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dots-three-outline-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/dots-three-outline-vertical-fill.svg new file mode 100644 index 0000000..6487891 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dots-three-outline-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dots-three-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/dots-three-vertical-fill.svg new file mode 100644 index 0000000..3a5219a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dots-three-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/download-fill.svg b/phosphor_orig/SVGs Flat/fill/download-fill.svg new file mode 100644 index 0000000..744a900 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/download-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/download-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/download-simple-fill.svg new file mode 100644 index 0000000..f51ec79 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/download-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dress-fill.svg b/phosphor_orig/SVGs Flat/fill/dress-fill.svg new file mode 100644 index 0000000..1788f7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dress-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dresser-fill.svg b/phosphor_orig/SVGs Flat/fill/dresser-fill.svg new file mode 100644 index 0000000..648e310 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dresser-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dribbble-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/dribbble-logo-fill.svg new file mode 100644 index 0000000..f46de9c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dribbble-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/drone-fill.svg b/phosphor_orig/SVGs Flat/fill/drone-fill.svg new file mode 100644 index 0000000..ee2cdde --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/drone-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/drop-fill.svg b/phosphor_orig/SVGs Flat/fill/drop-fill.svg new file mode 100644 index 0000000..d708136 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/drop-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/drop-half-bottom-fill.svg b/phosphor_orig/SVGs Flat/fill/drop-half-bottom-fill.svg new file mode 100644 index 0000000..4c52a3f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/drop-half-bottom-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/drop-half-fill.svg b/phosphor_orig/SVGs Flat/fill/drop-half-fill.svg new file mode 100644 index 0000000..793fff7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/drop-half-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/drop-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/drop-simple-fill.svg new file mode 100644 index 0000000..43be530 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/drop-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/drop-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/drop-slash-fill.svg new file mode 100644 index 0000000..5e4457e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/drop-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/dropbox-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/dropbox-logo-fill.svg new file mode 100644 index 0000000..aa60cf3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/dropbox-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/ear-fill.svg b/phosphor_orig/SVGs Flat/fill/ear-fill.svg new file mode 100644 index 0000000..6bcd762 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/ear-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/ear-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/ear-slash-fill.svg new file mode 100644 index 0000000..9b39c13 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/ear-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/egg-crack-fill.svg b/phosphor_orig/SVGs Flat/fill/egg-crack-fill.svg new file mode 100644 index 0000000..553a5f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/egg-crack-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/egg-fill.svg b/phosphor_orig/SVGs Flat/fill/egg-fill.svg new file mode 100644 index 0000000..ed8f757 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/egg-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/eject-fill.svg b/phosphor_orig/SVGs Flat/fill/eject-fill.svg new file mode 100644 index 0000000..148cd67 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/eject-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/eject-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/eject-simple-fill.svg new file mode 100644 index 0000000..1e0b093 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/eject-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/elevator-fill.svg b/phosphor_orig/SVGs Flat/fill/elevator-fill.svg new file mode 100644 index 0000000..8c9357b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/elevator-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/empty-fill.svg b/phosphor_orig/SVGs Flat/fill/empty-fill.svg new file mode 100644 index 0000000..7c46c93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/empty-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/engine-fill.svg b/phosphor_orig/SVGs Flat/fill/engine-fill.svg new file mode 100644 index 0000000..5d96119 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/engine-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/envelope-fill.svg b/phosphor_orig/SVGs Flat/fill/envelope-fill.svg new file mode 100644 index 0000000..3214318 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/envelope-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/envelope-open-fill.svg b/phosphor_orig/SVGs Flat/fill/envelope-open-fill.svg new file mode 100644 index 0000000..8e4479d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/envelope-open-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/envelope-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/envelope-simple-fill.svg new file mode 100644 index 0000000..78434ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/envelope-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/envelope-simple-open-fill.svg b/phosphor_orig/SVGs Flat/fill/envelope-simple-open-fill.svg new file mode 100644 index 0000000..7e11271 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/envelope-simple-open-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/equalizer-fill.svg b/phosphor_orig/SVGs Flat/fill/equalizer-fill.svg new file mode 100644 index 0000000..66035d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/equalizer-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/equals-fill.svg b/phosphor_orig/SVGs Flat/fill/equals-fill.svg new file mode 100644 index 0000000..0b2db3c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/equals-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/eraser-fill.svg b/phosphor_orig/SVGs Flat/fill/eraser-fill.svg new file mode 100644 index 0000000..9dbb5f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/eraser-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/escalator-down-fill.svg b/phosphor_orig/SVGs Flat/fill/escalator-down-fill.svg new file mode 100644 index 0000000..38c3036 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/escalator-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/escalator-up-fill.svg b/phosphor_orig/SVGs Flat/fill/escalator-up-fill.svg new file mode 100644 index 0000000..037453a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/escalator-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/exam-fill.svg b/phosphor_orig/SVGs Flat/fill/exam-fill.svg new file mode 100644 index 0000000..a59033c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/exam-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/exclamation-mark-fill.svg b/phosphor_orig/SVGs Flat/fill/exclamation-mark-fill.svg new file mode 100644 index 0000000..473cdf7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/exclamation-mark-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/exclude-fill.svg b/phosphor_orig/SVGs Flat/fill/exclude-fill.svg new file mode 100644 index 0000000..430ef76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/exclude-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/exclude-square-fill.svg b/phosphor_orig/SVGs Flat/fill/exclude-square-fill.svg new file mode 100644 index 0000000..f49cac4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/exclude-square-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/export-fill.svg b/phosphor_orig/SVGs Flat/fill/export-fill.svg new file mode 100644 index 0000000..e51277c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/export-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/eye-closed-fill.svg b/phosphor_orig/SVGs Flat/fill/eye-closed-fill.svg new file mode 100644 index 0000000..bb17e84 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/eye-closed-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/eye-fill.svg b/phosphor_orig/SVGs Flat/fill/eye-fill.svg new file mode 100644 index 0000000..c5e3b99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/eye-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/eye-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/eye-slash-fill.svg new file mode 100644 index 0000000..6453691 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/eye-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/eyedropper-fill.svg b/phosphor_orig/SVGs Flat/fill/eyedropper-fill.svg new file mode 100644 index 0000000..195bd64 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/eyedropper-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/eyedropper-sample-fill.svg b/phosphor_orig/SVGs Flat/fill/eyedropper-sample-fill.svg new file mode 100644 index 0000000..eaaefc5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/eyedropper-sample-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/eyeglasses-fill.svg b/phosphor_orig/SVGs Flat/fill/eyeglasses-fill.svg new file mode 100644 index 0000000..c5e4804 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/eyeglasses-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/eyes-fill.svg b/phosphor_orig/SVGs Flat/fill/eyes-fill.svg new file mode 100644 index 0000000..4f7fdcb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/eyes-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/face-mask-fill.svg b/phosphor_orig/SVGs Flat/fill/face-mask-fill.svg new file mode 100644 index 0000000..63d522b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/face-mask-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/facebook-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/facebook-logo-fill.svg new file mode 100644 index 0000000..e6ea4bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/facebook-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/factory-fill.svg b/phosphor_orig/SVGs Flat/fill/factory-fill.svg new file mode 100644 index 0000000..9e4b461 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/factory-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/faders-fill.svg b/phosphor_orig/SVGs Flat/fill/faders-fill.svg new file mode 100644 index 0000000..6ef7d82 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/faders-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/faders-horizontal-fill.svg b/phosphor_orig/SVGs Flat/fill/faders-horizontal-fill.svg new file mode 100644 index 0000000..d221233 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/faders-horizontal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/fallout-shelter-fill.svg b/phosphor_orig/SVGs Flat/fill/fallout-shelter-fill.svg new file mode 100644 index 0000000..39bc0b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/fallout-shelter-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/fan-fill.svg b/phosphor_orig/SVGs Flat/fill/fan-fill.svg new file mode 100644 index 0000000..6ba34b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/fan-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/farm-fill.svg b/phosphor_orig/SVGs Flat/fill/farm-fill.svg new file mode 100644 index 0000000..87b69a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/farm-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/fast-forward-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/fast-forward-circle-fill.svg new file mode 100644 index 0000000..41e8821 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/fast-forward-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/fast-forward-fill.svg b/phosphor_orig/SVGs Flat/fill/fast-forward-fill.svg new file mode 100644 index 0000000..bd8d593 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/fast-forward-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/feather-fill.svg b/phosphor_orig/SVGs Flat/fill/feather-fill.svg new file mode 100644 index 0000000..0ddf636 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/feather-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/fediverse-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/fediverse-logo-fill.svg new file mode 100644 index 0000000..968add5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/fediverse-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/figma-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/figma-logo-fill.svg new file mode 100644 index 0000000..55069f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/figma-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-archive-fill.svg b/phosphor_orig/SVGs Flat/fill/file-archive-fill.svg new file mode 100644 index 0000000..76e9ce9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-archive-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-arrow-down-fill.svg b/phosphor_orig/SVGs Flat/fill/file-arrow-down-fill.svg new file mode 100644 index 0000000..5480c1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-arrow-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-arrow-up-fill.svg b/phosphor_orig/SVGs Flat/fill/file-arrow-up-fill.svg new file mode 100644 index 0000000..c9226b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-arrow-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-audio-fill.svg b/phosphor_orig/SVGs Flat/fill/file-audio-fill.svg new file mode 100644 index 0000000..d4a351f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-audio-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-c-fill.svg b/phosphor_orig/SVGs Flat/fill/file-c-fill.svg new file mode 100644 index 0000000..d06f603 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-c-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-c-sharp-fill.svg b/phosphor_orig/SVGs Flat/fill/file-c-sharp-fill.svg new file mode 100644 index 0000000..1e55553 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-c-sharp-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-cloud-fill.svg b/phosphor_orig/SVGs Flat/fill/file-cloud-fill.svg new file mode 100644 index 0000000..0467aaa --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-cloud-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-code-fill.svg b/phosphor_orig/SVGs Flat/fill/file-code-fill.svg new file mode 100644 index 0000000..32d0f1c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-code-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-cpp-fill.svg b/phosphor_orig/SVGs Flat/fill/file-cpp-fill.svg new file mode 100644 index 0000000..f96ae2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-cpp-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-css-fill.svg b/phosphor_orig/SVGs Flat/fill/file-css-fill.svg new file mode 100644 index 0000000..8fcc3ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-css-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-csv-fill.svg b/phosphor_orig/SVGs Flat/fill/file-csv-fill.svg new file mode 100644 index 0000000..0268a88 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-csv-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-dashed-fill.svg b/phosphor_orig/SVGs Flat/fill/file-dashed-fill.svg new file mode 100644 index 0000000..08905ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-dashed-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-doc-fill.svg b/phosphor_orig/SVGs Flat/fill/file-doc-fill.svg new file mode 100644 index 0000000..3f2efda --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-doc-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-fill.svg b/phosphor_orig/SVGs Flat/fill/file-fill.svg new file mode 100644 index 0000000..a9db98c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-html-fill.svg b/phosphor_orig/SVGs Flat/fill/file-html-fill.svg new file mode 100644 index 0000000..a20139e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-html-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-image-fill.svg b/phosphor_orig/SVGs Flat/fill/file-image-fill.svg new file mode 100644 index 0000000..3fd2d55 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-image-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-ini-fill.svg b/phosphor_orig/SVGs Flat/fill/file-ini-fill.svg new file mode 100644 index 0000000..599492d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-ini-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-jpg-fill.svg b/phosphor_orig/SVGs Flat/fill/file-jpg-fill.svg new file mode 100644 index 0000000..7783526 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-jpg-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-js-fill.svg b/phosphor_orig/SVGs Flat/fill/file-js-fill.svg new file mode 100644 index 0000000..b21f2fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-js-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-jsx-fill.svg b/phosphor_orig/SVGs Flat/fill/file-jsx-fill.svg new file mode 100644 index 0000000..c4c71e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-jsx-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-lock-fill.svg b/phosphor_orig/SVGs Flat/fill/file-lock-fill.svg new file mode 100644 index 0000000..ea784c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-lock-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-magnifying-glass-fill.svg b/phosphor_orig/SVGs Flat/fill/file-magnifying-glass-fill.svg new file mode 100644 index 0000000..5ba7cb5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-magnifying-glass-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-md-fill.svg b/phosphor_orig/SVGs Flat/fill/file-md-fill.svg new file mode 100644 index 0000000..b447968 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-md-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-minus-fill.svg b/phosphor_orig/SVGs Flat/fill/file-minus-fill.svg new file mode 100644 index 0000000..4050d24 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-minus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-pdf-fill.svg b/phosphor_orig/SVGs Flat/fill/file-pdf-fill.svg new file mode 100644 index 0000000..63db26e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-pdf-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/file-plus-fill.svg new file mode 100644 index 0000000..04f055e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-png-fill.svg b/phosphor_orig/SVGs Flat/fill/file-png-fill.svg new file mode 100644 index 0000000..c298788 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-png-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-ppt-fill.svg b/phosphor_orig/SVGs Flat/fill/file-ppt-fill.svg new file mode 100644 index 0000000..82fc6d0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-ppt-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-py-fill.svg b/phosphor_orig/SVGs Flat/fill/file-py-fill.svg new file mode 100644 index 0000000..efddcba --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-py-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-rs-fill.svg b/phosphor_orig/SVGs Flat/fill/file-rs-fill.svg new file mode 100644 index 0000000..9387ded --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-rs-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-sql-fill.svg b/phosphor_orig/SVGs Flat/fill/file-sql-fill.svg new file mode 100644 index 0000000..0a219e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-sql-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-svg-fill.svg b/phosphor_orig/SVGs Flat/fill/file-svg-fill.svg new file mode 100644 index 0000000..69c717e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-svg-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-text-fill.svg b/phosphor_orig/SVGs Flat/fill/file-text-fill.svg new file mode 100644 index 0000000..4a1e961 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-text-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-ts-fill.svg b/phosphor_orig/SVGs Flat/fill/file-ts-fill.svg new file mode 100644 index 0000000..8da4a58 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-ts-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-tsx-fill.svg b/phosphor_orig/SVGs Flat/fill/file-tsx-fill.svg new file mode 100644 index 0000000..6c70981 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-tsx-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-txt-fill.svg b/phosphor_orig/SVGs Flat/fill/file-txt-fill.svg new file mode 100644 index 0000000..f96a8b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-txt-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-video-fill.svg b/phosphor_orig/SVGs Flat/fill/file-video-fill.svg new file mode 100644 index 0000000..bb87d89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-video-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-vue-fill.svg b/phosphor_orig/SVGs Flat/fill/file-vue-fill.svg new file mode 100644 index 0000000..bad048f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-vue-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-x-fill.svg b/phosphor_orig/SVGs Flat/fill/file-x-fill.svg new file mode 100644 index 0000000..3fac894 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-xls-fill.svg b/phosphor_orig/SVGs Flat/fill/file-xls-fill.svg new file mode 100644 index 0000000..f8fdae1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-xls-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/file-zip-fill.svg b/phosphor_orig/SVGs Flat/fill/file-zip-fill.svg new file mode 100644 index 0000000..1fcb148 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/file-zip-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/files-fill.svg b/phosphor_orig/SVGs Flat/fill/files-fill.svg new file mode 100644 index 0000000..c20ba26 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/files-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/film-reel-fill.svg b/phosphor_orig/SVGs Flat/fill/film-reel-fill.svg new file mode 100644 index 0000000..f2b19f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/film-reel-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/film-script-fill.svg b/phosphor_orig/SVGs Flat/fill/film-script-fill.svg new file mode 100644 index 0000000..73ed9c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/film-script-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/film-slate-fill.svg b/phosphor_orig/SVGs Flat/fill/film-slate-fill.svg new file mode 100644 index 0000000..6733bd5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/film-slate-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/film-strip-fill.svg b/phosphor_orig/SVGs Flat/fill/film-strip-fill.svg new file mode 100644 index 0000000..4d437c6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/film-strip-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/fingerprint-fill.svg b/phosphor_orig/SVGs Flat/fill/fingerprint-fill.svg new file mode 100644 index 0000000..16db598 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/fingerprint-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/fingerprint-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/fingerprint-simple-fill.svg new file mode 100644 index 0000000..a3f8cb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/fingerprint-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/finn-the-human-fill.svg b/phosphor_orig/SVGs Flat/fill/finn-the-human-fill.svg new file mode 100644 index 0000000..bcbd761 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/finn-the-human-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/fire-extinguisher-fill.svg b/phosphor_orig/SVGs Flat/fill/fire-extinguisher-fill.svg new file mode 100644 index 0000000..bef93d6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/fire-extinguisher-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/fire-fill.svg b/phosphor_orig/SVGs Flat/fill/fire-fill.svg new file mode 100644 index 0000000..ed1b47f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/fire-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/fire-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/fire-simple-fill.svg new file mode 100644 index 0000000..a26adbd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/fire-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/fire-truck-fill.svg b/phosphor_orig/SVGs Flat/fill/fire-truck-fill.svg new file mode 100644 index 0000000..d59093d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/fire-truck-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/first-aid-fill.svg b/phosphor_orig/SVGs Flat/fill/first-aid-fill.svg new file mode 100644 index 0000000..8b3afbf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/first-aid-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/first-aid-kit-fill.svg b/phosphor_orig/SVGs Flat/fill/first-aid-kit-fill.svg new file mode 100644 index 0000000..c2f0f6f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/first-aid-kit-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/fish-fill.svg b/phosphor_orig/SVGs Flat/fill/fish-fill.svg new file mode 100644 index 0000000..224497e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/fish-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/fish-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/fish-simple-fill.svg new file mode 100644 index 0000000..919ca6a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/fish-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/flag-banner-fill.svg b/phosphor_orig/SVGs Flat/fill/flag-banner-fill.svg new file mode 100644 index 0000000..57d0580 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/flag-banner-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/flag-banner-fold-fill.svg b/phosphor_orig/SVGs Flat/fill/flag-banner-fold-fill.svg new file mode 100644 index 0000000..172fced --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/flag-banner-fold-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/flag-checkered-fill.svg b/phosphor_orig/SVGs Flat/fill/flag-checkered-fill.svg new file mode 100644 index 0000000..4ec1b7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/flag-checkered-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/flag-fill.svg b/phosphor_orig/SVGs Flat/fill/flag-fill.svg new file mode 100644 index 0000000..e02616e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/flag-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/flag-pennant-fill.svg b/phosphor_orig/SVGs Flat/fill/flag-pennant-fill.svg new file mode 100644 index 0000000..860d185 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/flag-pennant-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/flame-fill.svg b/phosphor_orig/SVGs Flat/fill/flame-fill.svg new file mode 100644 index 0000000..546c966 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/flame-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/flashlight-fill.svg b/phosphor_orig/SVGs Flat/fill/flashlight-fill.svg new file mode 100644 index 0000000..a299ba9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/flashlight-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/flask-fill.svg b/phosphor_orig/SVGs Flat/fill/flask-fill.svg new file mode 100644 index 0000000..c75da21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/flask-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/flip-horizontal-fill.svg b/phosphor_orig/SVGs Flat/fill/flip-horizontal-fill.svg new file mode 100644 index 0000000..1ca968c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/flip-horizontal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/flip-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/flip-vertical-fill.svg new file mode 100644 index 0000000..9aedf2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/flip-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/floppy-disk-back-fill.svg b/phosphor_orig/SVGs Flat/fill/floppy-disk-back-fill.svg new file mode 100644 index 0000000..af88313 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/floppy-disk-back-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/floppy-disk-fill.svg b/phosphor_orig/SVGs Flat/fill/floppy-disk-fill.svg new file mode 100644 index 0000000..b87f69b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/floppy-disk-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/flow-arrow-fill.svg b/phosphor_orig/SVGs Flat/fill/flow-arrow-fill.svg new file mode 100644 index 0000000..b695d93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/flow-arrow-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/flower-fill.svg b/phosphor_orig/SVGs Flat/fill/flower-fill.svg new file mode 100644 index 0000000..4eb1219 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/flower-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/flower-lotus-fill.svg b/phosphor_orig/SVGs Flat/fill/flower-lotus-fill.svg new file mode 100644 index 0000000..9f059f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/flower-lotus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/flower-tulip-fill.svg b/phosphor_orig/SVGs Flat/fill/flower-tulip-fill.svg new file mode 100644 index 0000000..8e6284b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/flower-tulip-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/flying-saucer-fill.svg b/phosphor_orig/SVGs Flat/fill/flying-saucer-fill.svg new file mode 100644 index 0000000..442283e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/flying-saucer-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folder-dashed-fill.svg b/phosphor_orig/SVGs Flat/fill/folder-dashed-fill.svg new file mode 100644 index 0000000..9c288bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folder-dashed-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folder-fill.svg b/phosphor_orig/SVGs Flat/fill/folder-fill.svg new file mode 100644 index 0000000..01819f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folder-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folder-lock-fill.svg b/phosphor_orig/SVGs Flat/fill/folder-lock-fill.svg new file mode 100644 index 0000000..cd5bd56 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folder-lock-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folder-minus-fill.svg b/phosphor_orig/SVGs Flat/fill/folder-minus-fill.svg new file mode 100644 index 0000000..291b739 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folder-minus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folder-open-fill.svg b/phosphor_orig/SVGs Flat/fill/folder-open-fill.svg new file mode 100644 index 0000000..39b173d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folder-open-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folder-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/folder-plus-fill.svg new file mode 100644 index 0000000..367d34f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folder-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folder-simple-dashed-fill.svg b/phosphor_orig/SVGs Flat/fill/folder-simple-dashed-fill.svg new file mode 100644 index 0000000..9a8c62e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folder-simple-dashed-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folder-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/folder-simple-fill.svg new file mode 100644 index 0000000..fe7389f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folder-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folder-simple-lock-fill.svg b/phosphor_orig/SVGs Flat/fill/folder-simple-lock-fill.svg new file mode 100644 index 0000000..fba1977 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folder-simple-lock-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folder-simple-minus-fill.svg b/phosphor_orig/SVGs Flat/fill/folder-simple-minus-fill.svg new file mode 100644 index 0000000..1c31414 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folder-simple-minus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folder-simple-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/folder-simple-plus-fill.svg new file mode 100644 index 0000000..b647736 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folder-simple-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folder-simple-star-fill.svg b/phosphor_orig/SVGs Flat/fill/folder-simple-star-fill.svg new file mode 100644 index 0000000..b6efebe --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folder-simple-star-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folder-simple-user-fill.svg b/phosphor_orig/SVGs Flat/fill/folder-simple-user-fill.svg new file mode 100644 index 0000000..9e965a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folder-simple-user-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folder-star-fill.svg b/phosphor_orig/SVGs Flat/fill/folder-star-fill.svg new file mode 100644 index 0000000..88199c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folder-star-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folder-user-fill.svg b/phosphor_orig/SVGs Flat/fill/folder-user-fill.svg new file mode 100644 index 0000000..b548846 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folder-user-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/folders-fill.svg b/phosphor_orig/SVGs Flat/fill/folders-fill.svg new file mode 100644 index 0000000..9c1e552 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/folders-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/football-fill.svg b/phosphor_orig/SVGs Flat/fill/football-fill.svg new file mode 100644 index 0000000..d34ad7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/football-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/football-helmet-fill.svg b/phosphor_orig/SVGs Flat/fill/football-helmet-fill.svg new file mode 100644 index 0000000..623d666 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/football-helmet-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/footprints-fill.svg b/phosphor_orig/SVGs Flat/fill/footprints-fill.svg new file mode 100644 index 0000000..b72db2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/footprints-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/fork-knife-fill.svg b/phosphor_orig/SVGs Flat/fill/fork-knife-fill.svg new file mode 100644 index 0000000..bbb8068 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/fork-knife-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/four-k-fill.svg b/phosphor_orig/SVGs Flat/fill/four-k-fill.svg new file mode 100644 index 0000000..f7f6704 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/four-k-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/frame-corners-fill.svg b/phosphor_orig/SVGs Flat/fill/frame-corners-fill.svg new file mode 100644 index 0000000..736d0ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/frame-corners-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/framer-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/framer-logo-fill.svg new file mode 100644 index 0000000..7d87cf9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/framer-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/function-fill.svg b/phosphor_orig/SVGs Flat/fill/function-fill.svg new file mode 100644 index 0000000..37bcac4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/function-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/funnel-fill.svg b/phosphor_orig/SVGs Flat/fill/funnel-fill.svg new file mode 100644 index 0000000..f50d233 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/funnel-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/funnel-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/funnel-simple-fill.svg new file mode 100644 index 0000000..c6a6a69 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/funnel-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/funnel-simple-x-fill.svg b/phosphor_orig/SVGs Flat/fill/funnel-simple-x-fill.svg new file mode 100644 index 0000000..0edb0f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/funnel-simple-x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/funnel-x-fill.svg b/phosphor_orig/SVGs Flat/fill/funnel-x-fill.svg new file mode 100644 index 0000000..1f01c3f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/funnel-x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/game-controller-fill.svg b/phosphor_orig/SVGs Flat/fill/game-controller-fill.svg new file mode 100644 index 0000000..3c4a6bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/game-controller-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/garage-fill.svg b/phosphor_orig/SVGs Flat/fill/garage-fill.svg new file mode 100644 index 0000000..33511c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/garage-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gas-can-fill.svg b/phosphor_orig/SVGs Flat/fill/gas-can-fill.svg new file mode 100644 index 0000000..e65be08 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gas-can-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gas-pump-fill.svg b/phosphor_orig/SVGs Flat/fill/gas-pump-fill.svg new file mode 100644 index 0000000..5981371 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gas-pump-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gauge-fill.svg b/phosphor_orig/SVGs Flat/fill/gauge-fill.svg new file mode 100644 index 0000000..b5aeadf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gauge-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gavel-fill.svg b/phosphor_orig/SVGs Flat/fill/gavel-fill.svg new file mode 100644 index 0000000..d998c5b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gavel-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gear-fill.svg b/phosphor_orig/SVGs Flat/fill/gear-fill.svg new file mode 100644 index 0000000..8919916 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gear-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gear-fine-fill.svg b/phosphor_orig/SVGs Flat/fill/gear-fine-fill.svg new file mode 100644 index 0000000..cb2db11 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gear-fine-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gear-six-fill.svg b/phosphor_orig/SVGs Flat/fill/gear-six-fill.svg new file mode 100644 index 0000000..0eeb3ff --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gear-six-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gender-female-fill.svg b/phosphor_orig/SVGs Flat/fill/gender-female-fill.svg new file mode 100644 index 0000000..9ac9d3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gender-female-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gender-intersex-fill.svg b/phosphor_orig/SVGs Flat/fill/gender-intersex-fill.svg new file mode 100644 index 0000000..dd694e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gender-intersex-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gender-male-fill.svg b/phosphor_orig/SVGs Flat/fill/gender-male-fill.svg new file mode 100644 index 0000000..d596bd9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gender-male-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gender-neuter-fill.svg b/phosphor_orig/SVGs Flat/fill/gender-neuter-fill.svg new file mode 100644 index 0000000..5e5c85b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gender-neuter-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gender-nonbinary-fill.svg b/phosphor_orig/SVGs Flat/fill/gender-nonbinary-fill.svg new file mode 100644 index 0000000..d77db44 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gender-nonbinary-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gender-transgender-fill.svg b/phosphor_orig/SVGs Flat/fill/gender-transgender-fill.svg new file mode 100644 index 0000000..15f5245 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gender-transgender-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/ghost-fill.svg b/phosphor_orig/SVGs Flat/fill/ghost-fill.svg new file mode 100644 index 0000000..5ae0d9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/ghost-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gif-fill.svg b/phosphor_orig/SVGs Flat/fill/gif-fill.svg new file mode 100644 index 0000000..abf3314 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gif-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gift-fill.svg b/phosphor_orig/SVGs Flat/fill/gift-fill.svg new file mode 100644 index 0000000..929635d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gift-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/git-branch-fill.svg b/phosphor_orig/SVGs Flat/fill/git-branch-fill.svg new file mode 100644 index 0000000..68fa288 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/git-branch-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/git-commit-fill.svg b/phosphor_orig/SVGs Flat/fill/git-commit-fill.svg new file mode 100644 index 0000000..351b7f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/git-commit-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/git-diff-fill.svg b/phosphor_orig/SVGs Flat/fill/git-diff-fill.svg new file mode 100644 index 0000000..9e3380e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/git-diff-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/git-fork-fill.svg b/phosphor_orig/SVGs Flat/fill/git-fork-fill.svg new file mode 100644 index 0000000..fef03d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/git-fork-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/git-merge-fill.svg b/phosphor_orig/SVGs Flat/fill/git-merge-fill.svg new file mode 100644 index 0000000..0b2ccd0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/git-merge-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/git-pull-request-fill.svg b/phosphor_orig/SVGs Flat/fill/git-pull-request-fill.svg new file mode 100644 index 0000000..3dd3b01 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/git-pull-request-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/github-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/github-logo-fill.svg new file mode 100644 index 0000000..179a545 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/github-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gitlab-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/gitlab-logo-fill.svg new file mode 100644 index 0000000..acea74d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gitlab-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gitlab-logo-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/gitlab-logo-simple-fill.svg new file mode 100644 index 0000000..b4da2c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gitlab-logo-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/globe-fill.svg b/phosphor_orig/SVGs Flat/fill/globe-fill.svg new file mode 100644 index 0000000..45878b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/globe-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/globe-hemisphere-east-fill.svg b/phosphor_orig/SVGs Flat/fill/globe-hemisphere-east-fill.svg new file mode 100644 index 0000000..64c47ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/globe-hemisphere-east-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/globe-hemisphere-west-fill.svg b/phosphor_orig/SVGs Flat/fill/globe-hemisphere-west-fill.svg new file mode 100644 index 0000000..a4c78f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/globe-hemisphere-west-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/globe-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/globe-simple-fill.svg new file mode 100644 index 0000000..ba4ebf1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/globe-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/globe-simple-x-fill.svg b/phosphor_orig/SVGs Flat/fill/globe-simple-x-fill.svg new file mode 100644 index 0000000..b2f070d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/globe-simple-x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/globe-stand-fill.svg b/phosphor_orig/SVGs Flat/fill/globe-stand-fill.svg new file mode 100644 index 0000000..fa41b7e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/globe-stand-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/globe-x-fill.svg b/phosphor_orig/SVGs Flat/fill/globe-x-fill.svg new file mode 100644 index 0000000..ebca76d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/globe-x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/goggles-fill.svg b/phosphor_orig/SVGs Flat/fill/goggles-fill.svg new file mode 100644 index 0000000..93a3af1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/goggles-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/golf-fill.svg b/phosphor_orig/SVGs Flat/fill/golf-fill.svg new file mode 100644 index 0000000..a541286 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/golf-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/goodreads-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/goodreads-logo-fill.svg new file mode 100644 index 0000000..7beb5bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/goodreads-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/google-cardboard-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/google-cardboard-logo-fill.svg new file mode 100644 index 0000000..faf438a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/google-cardboard-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/google-chrome-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/google-chrome-logo-fill.svg new file mode 100644 index 0000000..7577b2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/google-chrome-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/google-drive-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/google-drive-logo-fill.svg new file mode 100644 index 0000000..20decb9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/google-drive-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/google-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/google-logo-fill.svg new file mode 100644 index 0000000..4d5cdad --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/google-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/google-photos-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/google-photos-logo-fill.svg new file mode 100644 index 0000000..b6f12fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/google-photos-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/google-play-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/google-play-logo-fill.svg new file mode 100644 index 0000000..c30e9ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/google-play-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/google-podcasts-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/google-podcasts-logo-fill.svg new file mode 100644 index 0000000..9f6fc2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/google-podcasts-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gps-fill.svg b/phosphor_orig/SVGs Flat/fill/gps-fill.svg new file mode 100644 index 0000000..0dea0bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gps-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gps-fix-fill.svg b/phosphor_orig/SVGs Flat/fill/gps-fix-fill.svg new file mode 100644 index 0000000..30ab431 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gps-fix-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gps-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/gps-slash-fill.svg new file mode 100644 index 0000000..d4db628 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gps-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/gradient-fill.svg b/phosphor_orig/SVGs Flat/fill/gradient-fill.svg new file mode 100644 index 0000000..ea233e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/gradient-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/graduation-cap-fill.svg b/phosphor_orig/SVGs Flat/fill/graduation-cap-fill.svg new file mode 100644 index 0000000..ad6b574 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/graduation-cap-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/grains-fill.svg b/phosphor_orig/SVGs Flat/fill/grains-fill.svg new file mode 100644 index 0000000..c786343 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/grains-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/grains-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/grains-slash-fill.svg new file mode 100644 index 0000000..c8199ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/grains-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/graph-fill.svg b/phosphor_orig/SVGs Flat/fill/graph-fill.svg new file mode 100644 index 0000000..152ec08 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/graph-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/graphics-card-fill.svg b/phosphor_orig/SVGs Flat/fill/graphics-card-fill.svg new file mode 100644 index 0000000..2002b89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/graphics-card-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/greater-than-fill.svg b/phosphor_orig/SVGs Flat/fill/greater-than-fill.svg new file mode 100644 index 0000000..76153d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/greater-than-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/greater-than-or-equal-fill.svg b/phosphor_orig/SVGs Flat/fill/greater-than-or-equal-fill.svg new file mode 100644 index 0000000..53584f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/greater-than-or-equal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/grid-four-fill.svg b/phosphor_orig/SVGs Flat/fill/grid-four-fill.svg new file mode 100644 index 0000000..cb356fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/grid-four-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/grid-nine-fill.svg b/phosphor_orig/SVGs Flat/fill/grid-nine-fill.svg new file mode 100644 index 0000000..c927fe5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/grid-nine-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/guitar-fill.svg b/phosphor_orig/SVGs Flat/fill/guitar-fill.svg new file mode 100644 index 0000000..06579f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/guitar-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hair-dryer-fill.svg b/phosphor_orig/SVGs Flat/fill/hair-dryer-fill.svg new file mode 100644 index 0000000..0875b23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hair-dryer-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hamburger-fill.svg b/phosphor_orig/SVGs Flat/fill/hamburger-fill.svg new file mode 100644 index 0000000..71618e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hamburger-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hammer-fill.svg b/phosphor_orig/SVGs Flat/fill/hammer-fill.svg new file mode 100644 index 0000000..654682c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hammer-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-arrow-down-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-arrow-down-fill.svg new file mode 100644 index 0000000..2149f4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-arrow-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-arrow-up-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-arrow-up-fill.svg new file mode 100644 index 0000000..7d1f676 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-arrow-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-coins-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-coins-fill.svg new file mode 100644 index 0000000..6c1c7e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-coins-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-deposit-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-deposit-fill.svg new file mode 100644 index 0000000..73ed28b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-deposit-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-eye-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-eye-fill.svg new file mode 100644 index 0000000..4ed653f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-eye-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-fill.svg new file mode 100644 index 0000000..efb8686 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-fist-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-fist-fill.svg new file mode 100644 index 0000000..18b71d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-fist-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-grabbing-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-grabbing-fill.svg new file mode 100644 index 0000000..7febff3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-grabbing-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-heart-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-heart-fill.svg new file mode 100644 index 0000000..ccd7f81 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-heart-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-palm-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-palm-fill.svg new file mode 100644 index 0000000..f414c76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-palm-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-peace-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-peace-fill.svg new file mode 100644 index 0000000..d3bacbe --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-peace-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-pointing-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-pointing-fill.svg new file mode 100644 index 0000000..fa0b000 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-pointing-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-soap-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-soap-fill.svg new file mode 100644 index 0000000..36be5de --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-soap-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-swipe-left-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-swipe-left-fill.svg new file mode 100644 index 0000000..9c02ae1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-swipe-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-swipe-right-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-swipe-right-fill.svg new file mode 100644 index 0000000..5835a5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-swipe-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-tap-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-tap-fill.svg new file mode 100644 index 0000000..e0728f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-tap-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-waving-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-waving-fill.svg new file mode 100644 index 0000000..2066085 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-waving-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hand-withdraw-fill.svg b/phosphor_orig/SVGs Flat/fill/hand-withdraw-fill.svg new file mode 100644 index 0000000..7aa5ddc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hand-withdraw-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/handbag-fill.svg b/phosphor_orig/SVGs Flat/fill/handbag-fill.svg new file mode 100644 index 0000000..d3b314e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/handbag-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/handbag-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/handbag-simple-fill.svg new file mode 100644 index 0000000..4714ce6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/handbag-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hands-clapping-fill.svg b/phosphor_orig/SVGs Flat/fill/hands-clapping-fill.svg new file mode 100644 index 0000000..3340e61 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hands-clapping-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hands-praying-fill.svg b/phosphor_orig/SVGs Flat/fill/hands-praying-fill.svg new file mode 100644 index 0000000..25a4dba --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hands-praying-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/handshake-fill.svg b/phosphor_orig/SVGs Flat/fill/handshake-fill.svg new file mode 100644 index 0000000..527f2a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/handshake-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hard-drive-fill.svg b/phosphor_orig/SVGs Flat/fill/hard-drive-fill.svg new file mode 100644 index 0000000..f6e489f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hard-drive-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hard-drives-fill.svg b/phosphor_orig/SVGs Flat/fill/hard-drives-fill.svg new file mode 100644 index 0000000..7e8661e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hard-drives-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hard-hat-fill.svg b/phosphor_orig/SVGs Flat/fill/hard-hat-fill.svg new file mode 100644 index 0000000..ea83d5b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hard-hat-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hash-fill.svg b/phosphor_orig/SVGs Flat/fill/hash-fill.svg new file mode 100644 index 0000000..f5d52a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hash-straight-fill.svg b/phosphor_orig/SVGs Flat/fill/hash-straight-fill.svg new file mode 100644 index 0000000..34cbfe8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hash-straight-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/head-circuit-fill.svg b/phosphor_orig/SVGs Flat/fill/head-circuit-fill.svg new file mode 100644 index 0000000..587560b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/head-circuit-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/headlights-fill.svg b/phosphor_orig/SVGs Flat/fill/headlights-fill.svg new file mode 100644 index 0000000..2749bdd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/headlights-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/headphones-fill.svg b/phosphor_orig/SVGs Flat/fill/headphones-fill.svg new file mode 100644 index 0000000..9938c81 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/headphones-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/headset-fill.svg b/phosphor_orig/SVGs Flat/fill/headset-fill.svg new file mode 100644 index 0000000..e6986db --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/headset-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/heart-break-fill.svg b/phosphor_orig/SVGs Flat/fill/heart-break-fill.svg new file mode 100644 index 0000000..fb23d96 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/heart-break-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/heart-fill.svg b/phosphor_orig/SVGs Flat/fill/heart-fill.svg new file mode 100644 index 0000000..21b6fb7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/heart-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/heart-half-fill.svg b/phosphor_orig/SVGs Flat/fill/heart-half-fill.svg new file mode 100644 index 0000000..6fd0807 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/heart-half-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/heart-straight-break-fill.svg b/phosphor_orig/SVGs Flat/fill/heart-straight-break-fill.svg new file mode 100644 index 0000000..088a4ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/heart-straight-break-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/heart-straight-fill.svg b/phosphor_orig/SVGs Flat/fill/heart-straight-fill.svg new file mode 100644 index 0000000..484c913 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/heart-straight-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/heartbeat-fill.svg b/phosphor_orig/SVGs Flat/fill/heartbeat-fill.svg new file mode 100644 index 0000000..685361b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/heartbeat-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hexagon-fill.svg b/phosphor_orig/SVGs Flat/fill/hexagon-fill.svg new file mode 100644 index 0000000..585d106 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hexagon-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/high-definition-fill.svg b/phosphor_orig/SVGs Flat/fill/high-definition-fill.svg new file mode 100644 index 0000000..a454ef8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/high-definition-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/high-heel-fill.svg b/phosphor_orig/SVGs Flat/fill/high-heel-fill.svg new file mode 100644 index 0000000..0c91387 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/high-heel-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/highlighter-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/highlighter-circle-fill.svg new file mode 100644 index 0000000..5aa3c65 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/highlighter-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/highlighter-fill.svg b/phosphor_orig/SVGs Flat/fill/highlighter-fill.svg new file mode 100644 index 0000000..980b563 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/highlighter-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hockey-fill.svg b/phosphor_orig/SVGs Flat/fill/hockey-fill.svg new file mode 100644 index 0000000..4d59e64 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hockey-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hoodie-fill.svg b/phosphor_orig/SVGs Flat/fill/hoodie-fill.svg new file mode 100644 index 0000000..3f35d58 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hoodie-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/horse-fill.svg b/phosphor_orig/SVGs Flat/fill/horse-fill.svg new file mode 100644 index 0000000..b7a6056 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/horse-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hospital-fill.svg b/phosphor_orig/SVGs Flat/fill/hospital-fill.svg new file mode 100644 index 0000000..e9e769c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hospital-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hourglass-fill.svg b/phosphor_orig/SVGs Flat/fill/hourglass-fill.svg new file mode 100644 index 0000000..725a922 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hourglass-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hourglass-high-fill.svg b/phosphor_orig/SVGs Flat/fill/hourglass-high-fill.svg new file mode 100644 index 0000000..d8fc47d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hourglass-high-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hourglass-low-fill.svg b/phosphor_orig/SVGs Flat/fill/hourglass-low-fill.svg new file mode 100644 index 0000000..745fb50 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hourglass-low-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hourglass-medium-fill.svg b/phosphor_orig/SVGs Flat/fill/hourglass-medium-fill.svg new file mode 100644 index 0000000..1e21522 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hourglass-medium-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hourglass-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/hourglass-simple-fill.svg new file mode 100644 index 0000000..a4b8dab --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hourglass-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hourglass-simple-high-fill.svg b/phosphor_orig/SVGs Flat/fill/hourglass-simple-high-fill.svg new file mode 100644 index 0000000..1f52709 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hourglass-simple-high-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hourglass-simple-low-fill.svg b/phosphor_orig/SVGs Flat/fill/hourglass-simple-low-fill.svg new file mode 100644 index 0000000..2d8cef4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hourglass-simple-low-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hourglass-simple-medium-fill.svg b/phosphor_orig/SVGs Flat/fill/hourglass-simple-medium-fill.svg new file mode 100644 index 0000000..47c339a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hourglass-simple-medium-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/house-fill.svg b/phosphor_orig/SVGs Flat/fill/house-fill.svg new file mode 100644 index 0000000..e656af9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/house-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/house-line-fill.svg b/phosphor_orig/SVGs Flat/fill/house-line-fill.svg new file mode 100644 index 0000000..36da743 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/house-line-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/house-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/house-simple-fill.svg new file mode 100644 index 0000000..2a14645 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/house-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/hurricane-fill.svg b/phosphor_orig/SVGs Flat/fill/hurricane-fill.svg new file mode 100644 index 0000000..0f3df5a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/hurricane-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/ice-cream-fill.svg b/phosphor_orig/SVGs Flat/fill/ice-cream-fill.svg new file mode 100644 index 0000000..a871cc0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/ice-cream-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/identification-badge-fill.svg b/phosphor_orig/SVGs Flat/fill/identification-badge-fill.svg new file mode 100644 index 0000000..3e84417 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/identification-badge-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/identification-card-fill.svg b/phosphor_orig/SVGs Flat/fill/identification-card-fill.svg new file mode 100644 index 0000000..880b253 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/identification-card-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/image-broken-fill.svg b/phosphor_orig/SVGs Flat/fill/image-broken-fill.svg new file mode 100644 index 0000000..84f27c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/image-broken-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/image-fill.svg b/phosphor_orig/SVGs Flat/fill/image-fill.svg new file mode 100644 index 0000000..945652c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/image-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/image-square-fill.svg b/phosphor_orig/SVGs Flat/fill/image-square-fill.svg new file mode 100644 index 0000000..5857bc0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/image-square-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/images-fill.svg b/phosphor_orig/SVGs Flat/fill/images-fill.svg new file mode 100644 index 0000000..e502312 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/images-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/images-square-fill.svg b/phosphor_orig/SVGs Flat/fill/images-square-fill.svg new file mode 100644 index 0000000..3564c86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/images-square-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/infinity-fill.svg b/phosphor_orig/SVGs Flat/fill/infinity-fill.svg new file mode 100644 index 0000000..5d17219 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/infinity-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/info-fill.svg b/phosphor_orig/SVGs Flat/fill/info-fill.svg new file mode 100644 index 0000000..8f8a44d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/info-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/instagram-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/instagram-logo-fill.svg new file mode 100644 index 0000000..c6f3b79 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/instagram-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/intersect-fill.svg b/phosphor_orig/SVGs Flat/fill/intersect-fill.svg new file mode 100644 index 0000000..14b2616 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/intersect-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/intersect-square-fill.svg b/phosphor_orig/SVGs Flat/fill/intersect-square-fill.svg new file mode 100644 index 0000000..4a26b92 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/intersect-square-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/intersect-three-fill.svg b/phosphor_orig/SVGs Flat/fill/intersect-three-fill.svg new file mode 100644 index 0000000..d52ce5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/intersect-three-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/intersection-fill.svg b/phosphor_orig/SVGs Flat/fill/intersection-fill.svg new file mode 100644 index 0000000..3d149dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/intersection-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/invoice-fill.svg b/phosphor_orig/SVGs Flat/fill/invoice-fill.svg new file mode 100644 index 0000000..c747ce7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/invoice-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/island-fill.svg b/phosphor_orig/SVGs Flat/fill/island-fill.svg new file mode 100644 index 0000000..540deb4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/island-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/jar-fill.svg b/phosphor_orig/SVGs Flat/fill/jar-fill.svg new file mode 100644 index 0000000..b23a54b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/jar-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/jar-label-fill.svg b/phosphor_orig/SVGs Flat/fill/jar-label-fill.svg new file mode 100644 index 0000000..ae94c9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/jar-label-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/jeep-fill.svg b/phosphor_orig/SVGs Flat/fill/jeep-fill.svg new file mode 100644 index 0000000..ef5c34f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/jeep-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/joystick-fill.svg b/phosphor_orig/SVGs Flat/fill/joystick-fill.svg new file mode 100644 index 0000000..dbeded7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/joystick-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/kanban-fill.svg b/phosphor_orig/SVGs Flat/fill/kanban-fill.svg new file mode 100644 index 0000000..dca2c35 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/kanban-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/key-fill.svg b/phosphor_orig/SVGs Flat/fill/key-fill.svg new file mode 100644 index 0000000..24cf495 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/key-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/key-return-fill.svg b/phosphor_orig/SVGs Flat/fill/key-return-fill.svg new file mode 100644 index 0000000..96053b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/key-return-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/keyboard-fill.svg b/phosphor_orig/SVGs Flat/fill/keyboard-fill.svg new file mode 100644 index 0000000..6cc2ebe --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/keyboard-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/keyhole-fill.svg b/phosphor_orig/SVGs Flat/fill/keyhole-fill.svg new file mode 100644 index 0000000..c38690c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/keyhole-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/knife-fill.svg b/phosphor_orig/SVGs Flat/fill/knife-fill.svg new file mode 100644 index 0000000..6120af1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/knife-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/ladder-fill.svg b/phosphor_orig/SVGs Flat/fill/ladder-fill.svg new file mode 100644 index 0000000..62baf80 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/ladder-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/ladder-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/ladder-simple-fill.svg new file mode 100644 index 0000000..2ce4f01 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/ladder-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lamp-fill.svg b/phosphor_orig/SVGs Flat/fill/lamp-fill.svg new file mode 100644 index 0000000..a3b0373 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lamp-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lamp-pendant-fill.svg b/phosphor_orig/SVGs Flat/fill/lamp-pendant-fill.svg new file mode 100644 index 0000000..d813ef8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lamp-pendant-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/laptop-fill.svg b/phosphor_orig/SVGs Flat/fill/laptop-fill.svg new file mode 100644 index 0000000..e82bd23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/laptop-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lasso-fill.svg b/phosphor_orig/SVGs Flat/fill/lasso-fill.svg new file mode 100644 index 0000000..cc3e340 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lasso-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lastfm-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/lastfm-logo-fill.svg new file mode 100644 index 0000000..6209542 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lastfm-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/layout-fill.svg b/phosphor_orig/SVGs Flat/fill/layout-fill.svg new file mode 100644 index 0000000..a31889a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/layout-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/leaf-fill.svg b/phosphor_orig/SVGs Flat/fill/leaf-fill.svg new file mode 100644 index 0000000..a26686e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/leaf-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lectern-fill.svg b/phosphor_orig/SVGs Flat/fill/lectern-fill.svg new file mode 100644 index 0000000..1df703f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lectern-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lego-fill.svg b/phosphor_orig/SVGs Flat/fill/lego-fill.svg new file mode 100644 index 0000000..b029b6e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lego-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lego-smiley-fill.svg b/phosphor_orig/SVGs Flat/fill/lego-smiley-fill.svg new file mode 100644 index 0000000..3fc8b1e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lego-smiley-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/less-than-fill.svg b/phosphor_orig/SVGs Flat/fill/less-than-fill.svg new file mode 100644 index 0000000..c4a193d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/less-than-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/less-than-or-equal-fill.svg b/phosphor_orig/SVGs Flat/fill/less-than-or-equal-fill.svg new file mode 100644 index 0000000..f994623 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/less-than-or-equal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/letter-circle-h-fill.svg b/phosphor_orig/SVGs Flat/fill/letter-circle-h-fill.svg new file mode 100644 index 0000000..2b0c560 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/letter-circle-h-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/letter-circle-p-fill.svg b/phosphor_orig/SVGs Flat/fill/letter-circle-p-fill.svg new file mode 100644 index 0000000..fbf12cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/letter-circle-p-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/letter-circle-v-fill.svg b/phosphor_orig/SVGs Flat/fill/letter-circle-v-fill.svg new file mode 100644 index 0000000..105bf63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/letter-circle-v-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lifebuoy-fill.svg b/phosphor_orig/SVGs Flat/fill/lifebuoy-fill.svg new file mode 100644 index 0000000..7e3cf07 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lifebuoy-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lightbulb-filament-fill.svg b/phosphor_orig/SVGs Flat/fill/lightbulb-filament-fill.svg new file mode 100644 index 0000000..95bfbf4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lightbulb-filament-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lightbulb-fill.svg b/phosphor_orig/SVGs Flat/fill/lightbulb-fill.svg new file mode 100644 index 0000000..57b01c3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lightbulb-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lighthouse-fill.svg b/phosphor_orig/SVGs Flat/fill/lighthouse-fill.svg new file mode 100644 index 0000000..216249f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lighthouse-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lightning-a-fill.svg b/phosphor_orig/SVGs Flat/fill/lightning-a-fill.svg new file mode 100644 index 0000000..4da4f95 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lightning-a-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lightning-fill.svg b/phosphor_orig/SVGs Flat/fill/lightning-fill.svg new file mode 100644 index 0000000..e2fe88e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lightning-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lightning-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/lightning-slash-fill.svg new file mode 100644 index 0000000..f891ecc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lightning-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/line-segment-fill.svg b/phosphor_orig/SVGs Flat/fill/line-segment-fill.svg new file mode 100644 index 0000000..c10c597 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/line-segment-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/line-segments-fill.svg b/phosphor_orig/SVGs Flat/fill/line-segments-fill.svg new file mode 100644 index 0000000..e7341f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/line-segments-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/line-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/line-vertical-fill.svg new file mode 100644 index 0000000..f508f0d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/line-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/link-break-fill.svg b/phosphor_orig/SVGs Flat/fill/link-break-fill.svg new file mode 100644 index 0000000..13f26a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/link-break-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/link-fill.svg b/phosphor_orig/SVGs Flat/fill/link-fill.svg new file mode 100644 index 0000000..b95eaa9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/link-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/link-simple-break-fill.svg b/phosphor_orig/SVGs Flat/fill/link-simple-break-fill.svg new file mode 100644 index 0000000..6419dd4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/link-simple-break-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/link-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/link-simple-fill.svg new file mode 100644 index 0000000..e3c32d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/link-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/link-simple-horizontal-break-fill.svg b/phosphor_orig/SVGs Flat/fill/link-simple-horizontal-break-fill.svg new file mode 100644 index 0000000..a174a1f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/link-simple-horizontal-break-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/link-simple-horizontal-fill.svg b/phosphor_orig/SVGs Flat/fill/link-simple-horizontal-fill.svg new file mode 100644 index 0000000..d934a77 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/link-simple-horizontal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/linkedin-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/linkedin-logo-fill.svg new file mode 100644 index 0000000..36695b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/linkedin-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/linktree-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/linktree-logo-fill.svg new file mode 100644 index 0000000..d378957 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/linktree-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/linux-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/linux-logo-fill.svg new file mode 100644 index 0000000..7560c5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/linux-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/list-bullets-fill.svg b/phosphor_orig/SVGs Flat/fill/list-bullets-fill.svg new file mode 100644 index 0000000..c629ea8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/list-bullets-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/list-checks-fill.svg b/phosphor_orig/SVGs Flat/fill/list-checks-fill.svg new file mode 100644 index 0000000..d7a8f34 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/list-checks-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/list-dashes-fill.svg b/phosphor_orig/SVGs Flat/fill/list-dashes-fill.svg new file mode 100644 index 0000000..2698b36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/list-dashes-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/list-fill.svg b/phosphor_orig/SVGs Flat/fill/list-fill.svg new file mode 100644 index 0000000..513d6b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/list-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/list-heart-fill.svg b/phosphor_orig/SVGs Flat/fill/list-heart-fill.svg new file mode 100644 index 0000000..a2486db --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/list-heart-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/list-magnifying-glass-fill.svg b/phosphor_orig/SVGs Flat/fill/list-magnifying-glass-fill.svg new file mode 100644 index 0000000..4105715 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/list-magnifying-glass-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/list-numbers-fill.svg b/phosphor_orig/SVGs Flat/fill/list-numbers-fill.svg new file mode 100644 index 0000000..d5cd434 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/list-numbers-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/list-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/list-plus-fill.svg new file mode 100644 index 0000000..6ee0866 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/list-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/list-star-fill.svg b/phosphor_orig/SVGs Flat/fill/list-star-fill.svg new file mode 100644 index 0000000..044839e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/list-star-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lock-fill.svg b/phosphor_orig/SVGs Flat/fill/lock-fill.svg new file mode 100644 index 0000000..1411d5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lock-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lock-key-fill.svg b/phosphor_orig/SVGs Flat/fill/lock-key-fill.svg new file mode 100644 index 0000000..493dec6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lock-key-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lock-key-open-fill.svg b/phosphor_orig/SVGs Flat/fill/lock-key-open-fill.svg new file mode 100644 index 0000000..90f60ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lock-key-open-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lock-laminated-fill.svg b/phosphor_orig/SVGs Flat/fill/lock-laminated-fill.svg new file mode 100644 index 0000000..c1a4588 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lock-laminated-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lock-laminated-open-fill.svg b/phosphor_orig/SVGs Flat/fill/lock-laminated-open-fill.svg new file mode 100644 index 0000000..4ba7bb7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lock-laminated-open-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lock-open-fill.svg b/phosphor_orig/SVGs Flat/fill/lock-open-fill.svg new file mode 100644 index 0000000..2663deb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lock-open-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lock-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/lock-simple-fill.svg new file mode 100644 index 0000000..a96f764 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lock-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lock-simple-open-fill.svg b/phosphor_orig/SVGs Flat/fill/lock-simple-open-fill.svg new file mode 100644 index 0000000..ae8e40e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lock-simple-open-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/lockers-fill.svg b/phosphor_orig/SVGs Flat/fill/lockers-fill.svg new file mode 100644 index 0000000..d93b0dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/lockers-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/log-fill.svg b/phosphor_orig/SVGs Flat/fill/log-fill.svg new file mode 100644 index 0000000..b1b5b99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/log-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/magic-wand-fill.svg b/phosphor_orig/SVGs Flat/fill/magic-wand-fill.svg new file mode 100644 index 0000000..7d229a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/magic-wand-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/magnet-fill.svg b/phosphor_orig/SVGs Flat/fill/magnet-fill.svg new file mode 100644 index 0000000..ea54b32 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/magnet-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/magnet-straight-fill.svg b/phosphor_orig/SVGs Flat/fill/magnet-straight-fill.svg new file mode 100644 index 0000000..7ae127d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/magnet-straight-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/magnifying-glass-fill.svg b/phosphor_orig/SVGs Flat/fill/magnifying-glass-fill.svg new file mode 100644 index 0000000..842d975 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/magnifying-glass-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/magnifying-glass-minus-fill.svg b/phosphor_orig/SVGs Flat/fill/magnifying-glass-minus-fill.svg new file mode 100644 index 0000000..eb57e98 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/magnifying-glass-minus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/magnifying-glass-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/magnifying-glass-plus-fill.svg new file mode 100644 index 0000000..2f4aae5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/magnifying-glass-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/mailbox-fill.svg b/phosphor_orig/SVGs Flat/fill/mailbox-fill.svg new file mode 100644 index 0000000..dffe17e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/mailbox-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/map-pin-area-fill.svg b/phosphor_orig/SVGs Flat/fill/map-pin-area-fill.svg new file mode 100644 index 0000000..c9a3ccc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/map-pin-area-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/map-pin-fill.svg b/phosphor_orig/SVGs Flat/fill/map-pin-fill.svg new file mode 100644 index 0000000..1a36c26 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/map-pin-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/map-pin-line-fill.svg b/phosphor_orig/SVGs Flat/fill/map-pin-line-fill.svg new file mode 100644 index 0000000..f76dbd2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/map-pin-line-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/map-pin-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/map-pin-plus-fill.svg new file mode 100644 index 0000000..2e2c03f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/map-pin-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/map-pin-simple-area-fill.svg b/phosphor_orig/SVGs Flat/fill/map-pin-simple-area-fill.svg new file mode 100644 index 0000000..203c82a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/map-pin-simple-area-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/map-pin-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/map-pin-simple-fill.svg new file mode 100644 index 0000000..3118936 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/map-pin-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/map-pin-simple-line-fill.svg b/phosphor_orig/SVGs Flat/fill/map-pin-simple-line-fill.svg new file mode 100644 index 0000000..4027771 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/map-pin-simple-line-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/map-trifold-fill.svg b/phosphor_orig/SVGs Flat/fill/map-trifold-fill.svg new file mode 100644 index 0000000..49fb8eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/map-trifold-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/markdown-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/markdown-logo-fill.svg new file mode 100644 index 0000000..31fa75a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/markdown-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/marker-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/marker-circle-fill.svg new file mode 100644 index 0000000..318c60e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/marker-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/martini-fill.svg b/phosphor_orig/SVGs Flat/fill/martini-fill.svg new file mode 100644 index 0000000..6741361 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/martini-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/mask-happy-fill.svg b/phosphor_orig/SVGs Flat/fill/mask-happy-fill.svg new file mode 100644 index 0000000..d55d0b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/mask-happy-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/mask-sad-fill.svg b/phosphor_orig/SVGs Flat/fill/mask-sad-fill.svg new file mode 100644 index 0000000..8f34b15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/mask-sad-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/mastodon-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/mastodon-logo-fill.svg new file mode 100644 index 0000000..1d24ccc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/mastodon-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/math-operations-fill.svg b/phosphor_orig/SVGs Flat/fill/math-operations-fill.svg new file mode 100644 index 0000000..9b805de --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/math-operations-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/matrix-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/matrix-logo-fill.svg new file mode 100644 index 0000000..49a5196 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/matrix-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/medal-fill.svg b/phosphor_orig/SVGs Flat/fill/medal-fill.svg new file mode 100644 index 0000000..223bae6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/medal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/medal-military-fill.svg b/phosphor_orig/SVGs Flat/fill/medal-military-fill.svg new file mode 100644 index 0000000..9bd5afb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/medal-military-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/medium-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/medium-logo-fill.svg new file mode 100644 index 0000000..4323b25 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/medium-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/megaphone-fill.svg b/phosphor_orig/SVGs Flat/fill/megaphone-fill.svg new file mode 100644 index 0000000..e2b7ed9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/megaphone-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/megaphone-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/megaphone-simple-fill.svg new file mode 100644 index 0000000..0863941 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/megaphone-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/member-of-fill.svg b/phosphor_orig/SVGs Flat/fill/member-of-fill.svg new file mode 100644 index 0000000..afa44da --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/member-of-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/memory-fill.svg b/phosphor_orig/SVGs Flat/fill/memory-fill.svg new file mode 100644 index 0000000..bd3eb9b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/memory-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/messenger-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/messenger-logo-fill.svg new file mode 100644 index 0000000..e511adf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/messenger-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/meta-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/meta-logo-fill.svg new file mode 100644 index 0000000..0b269ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/meta-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/meteor-fill.svg b/phosphor_orig/SVGs Flat/fill/meteor-fill.svg new file mode 100644 index 0000000..01bf290 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/meteor-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/metronome-fill.svg b/phosphor_orig/SVGs Flat/fill/metronome-fill.svg new file mode 100644 index 0000000..f7494a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/metronome-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/microphone-fill.svg b/phosphor_orig/SVGs Flat/fill/microphone-fill.svg new file mode 100644 index 0000000..6a4a0c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/microphone-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/microphone-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/microphone-slash-fill.svg new file mode 100644 index 0000000..18e8140 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/microphone-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/microphone-stage-fill.svg b/phosphor_orig/SVGs Flat/fill/microphone-stage-fill.svg new file mode 100644 index 0000000..87890ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/microphone-stage-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/microscope-fill.svg b/phosphor_orig/SVGs Flat/fill/microscope-fill.svg new file mode 100644 index 0000000..90df864 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/microscope-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/microsoft-excel-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/microsoft-excel-logo-fill.svg new file mode 100644 index 0000000..ff41fec --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/microsoft-excel-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/microsoft-outlook-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/microsoft-outlook-logo-fill.svg new file mode 100644 index 0000000..b03291c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/microsoft-outlook-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/microsoft-powerpoint-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/microsoft-powerpoint-logo-fill.svg new file mode 100644 index 0000000..2416fb5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/microsoft-powerpoint-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/microsoft-teams-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/microsoft-teams-logo-fill.svg new file mode 100644 index 0000000..80ce388 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/microsoft-teams-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/microsoft-word-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/microsoft-word-logo-fill.svg new file mode 100644 index 0000000..3843a0f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/microsoft-word-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/minus-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/minus-circle-fill.svg new file mode 100644 index 0000000..f87df51 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/minus-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/minus-fill.svg b/phosphor_orig/SVGs Flat/fill/minus-fill.svg new file mode 100644 index 0000000..72226bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/minus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/minus-square-fill.svg b/phosphor_orig/SVGs Flat/fill/minus-square-fill.svg new file mode 100644 index 0000000..3296fa5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/minus-square-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/money-fill.svg b/phosphor_orig/SVGs Flat/fill/money-fill.svg new file mode 100644 index 0000000..6cf2ee0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/money-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/money-wavy-fill.svg b/phosphor_orig/SVGs Flat/fill/money-wavy-fill.svg new file mode 100644 index 0000000..fce3e48 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/money-wavy-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/monitor-arrow-up-fill.svg b/phosphor_orig/SVGs Flat/fill/monitor-arrow-up-fill.svg new file mode 100644 index 0000000..57e00e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/monitor-arrow-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/monitor-fill.svg b/phosphor_orig/SVGs Flat/fill/monitor-fill.svg new file mode 100644 index 0000000..bd60bc4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/monitor-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/monitor-play-fill.svg b/phosphor_orig/SVGs Flat/fill/monitor-play-fill.svg new file mode 100644 index 0000000..1df61f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/monitor-play-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/moon-fill.svg b/phosphor_orig/SVGs Flat/fill/moon-fill.svg new file mode 100644 index 0000000..951a945 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/moon-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/moon-stars-fill.svg b/phosphor_orig/SVGs Flat/fill/moon-stars-fill.svg new file mode 100644 index 0000000..c17500b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/moon-stars-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/moped-fill.svg b/phosphor_orig/SVGs Flat/fill/moped-fill.svg new file mode 100644 index 0000000..0c4576d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/moped-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/moped-front-fill.svg b/phosphor_orig/SVGs Flat/fill/moped-front-fill.svg new file mode 100644 index 0000000..fdf19d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/moped-front-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/mosque-fill.svg b/phosphor_orig/SVGs Flat/fill/mosque-fill.svg new file mode 100644 index 0000000..6cfafdb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/mosque-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/motorcycle-fill.svg b/phosphor_orig/SVGs Flat/fill/motorcycle-fill.svg new file mode 100644 index 0000000..8996d79 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/motorcycle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/mountains-fill.svg b/phosphor_orig/SVGs Flat/fill/mountains-fill.svg new file mode 100644 index 0000000..75c24a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/mountains-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/mouse-fill.svg b/phosphor_orig/SVGs Flat/fill/mouse-fill.svg new file mode 100644 index 0000000..88a4f5b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/mouse-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/mouse-left-click-fill.svg b/phosphor_orig/SVGs Flat/fill/mouse-left-click-fill.svg new file mode 100644 index 0000000..e1fb357 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/mouse-left-click-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/mouse-middle-click-fill.svg b/phosphor_orig/SVGs Flat/fill/mouse-middle-click-fill.svg new file mode 100644 index 0000000..c0d623a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/mouse-middle-click-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/mouse-right-click-fill.svg b/phosphor_orig/SVGs Flat/fill/mouse-right-click-fill.svg new file mode 100644 index 0000000..6d0aef4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/mouse-right-click-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/mouse-scroll-fill.svg b/phosphor_orig/SVGs Flat/fill/mouse-scroll-fill.svg new file mode 100644 index 0000000..dec5a97 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/mouse-scroll-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/mouse-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/mouse-simple-fill.svg new file mode 100644 index 0000000..d254980 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/mouse-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/music-note-fill.svg b/phosphor_orig/SVGs Flat/fill/music-note-fill.svg new file mode 100644 index 0000000..422e7c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/music-note-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/music-note-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/music-note-simple-fill.svg new file mode 100644 index 0000000..925333b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/music-note-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/music-notes-fill.svg b/phosphor_orig/SVGs Flat/fill/music-notes-fill.svg new file mode 100644 index 0000000..d2753ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/music-notes-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/music-notes-minus-fill.svg b/phosphor_orig/SVGs Flat/fill/music-notes-minus-fill.svg new file mode 100644 index 0000000..a69cf98 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/music-notes-minus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/music-notes-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/music-notes-plus-fill.svg new file mode 100644 index 0000000..b9d42df --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/music-notes-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/music-notes-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/music-notes-simple-fill.svg new file mode 100644 index 0000000..2a6e6f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/music-notes-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/navigation-arrow-fill.svg b/phosphor_orig/SVGs Flat/fill/navigation-arrow-fill.svg new file mode 100644 index 0000000..d88e7a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/navigation-arrow-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/needle-fill.svg b/phosphor_orig/SVGs Flat/fill/needle-fill.svg new file mode 100644 index 0000000..336b9bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/needle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/network-fill.svg b/phosphor_orig/SVGs Flat/fill/network-fill.svg new file mode 100644 index 0000000..96ae83c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/network-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/network-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/network-slash-fill.svg new file mode 100644 index 0000000..2b32b0a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/network-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/network-x-fill.svg b/phosphor_orig/SVGs Flat/fill/network-x-fill.svg new file mode 100644 index 0000000..1710459 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/network-x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/newspaper-clipping-fill.svg b/phosphor_orig/SVGs Flat/fill/newspaper-clipping-fill.svg new file mode 100644 index 0000000..520dda6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/newspaper-clipping-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/newspaper-fill.svg b/phosphor_orig/SVGs Flat/fill/newspaper-fill.svg new file mode 100644 index 0000000..2790ce1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/newspaper-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/not-equals-fill.svg b/phosphor_orig/SVGs Flat/fill/not-equals-fill.svg new file mode 100644 index 0000000..6533fbc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/not-equals-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/not-member-of-fill.svg b/phosphor_orig/SVGs Flat/fill/not-member-of-fill.svg new file mode 100644 index 0000000..40807a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/not-member-of-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/not-subset-of-fill.svg b/phosphor_orig/SVGs Flat/fill/not-subset-of-fill.svg new file mode 100644 index 0000000..fc2a773 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/not-subset-of-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/not-superset-of-fill.svg b/phosphor_orig/SVGs Flat/fill/not-superset-of-fill.svg new file mode 100644 index 0000000..9da6697 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/not-superset-of-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/notches-fill.svg b/phosphor_orig/SVGs Flat/fill/notches-fill.svg new file mode 100644 index 0000000..fd949b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/notches-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/note-blank-fill.svg b/phosphor_orig/SVGs Flat/fill/note-blank-fill.svg new file mode 100644 index 0000000..a3840e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/note-blank-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/note-fill.svg b/phosphor_orig/SVGs Flat/fill/note-fill.svg new file mode 100644 index 0000000..d786842 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/note-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/note-pencil-fill.svg b/phosphor_orig/SVGs Flat/fill/note-pencil-fill.svg new file mode 100644 index 0000000..25be447 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/note-pencil-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/notebook-fill.svg b/phosphor_orig/SVGs Flat/fill/notebook-fill.svg new file mode 100644 index 0000000..632b205 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/notebook-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/notepad-fill.svg b/phosphor_orig/SVGs Flat/fill/notepad-fill.svg new file mode 100644 index 0000000..d991fab --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/notepad-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/notification-fill.svg b/phosphor_orig/SVGs Flat/fill/notification-fill.svg new file mode 100644 index 0000000..610d9c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/notification-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/notion-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/notion-logo-fill.svg new file mode 100644 index 0000000..9c0d027 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/notion-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/nuclear-plant-fill.svg b/phosphor_orig/SVGs Flat/fill/nuclear-plant-fill.svg new file mode 100644 index 0000000..c9fdd21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/nuclear-plant-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-circle-eight-fill.svg b/phosphor_orig/SVGs Flat/fill/number-circle-eight-fill.svg new file mode 100644 index 0000000..cbb052c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-circle-eight-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-circle-five-fill.svg b/phosphor_orig/SVGs Flat/fill/number-circle-five-fill.svg new file mode 100644 index 0000000..4af3fd4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-circle-five-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-circle-four-fill.svg b/phosphor_orig/SVGs Flat/fill/number-circle-four-fill.svg new file mode 100644 index 0000000..96688ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-circle-four-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-circle-nine-fill.svg b/phosphor_orig/SVGs Flat/fill/number-circle-nine-fill.svg new file mode 100644 index 0000000..ac90ee4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-circle-nine-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-circle-one-fill.svg b/phosphor_orig/SVGs Flat/fill/number-circle-one-fill.svg new file mode 100644 index 0000000..3ffe293 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-circle-one-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-circle-seven-fill.svg b/phosphor_orig/SVGs Flat/fill/number-circle-seven-fill.svg new file mode 100644 index 0000000..69e95e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-circle-seven-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-circle-six-fill.svg b/phosphor_orig/SVGs Flat/fill/number-circle-six-fill.svg new file mode 100644 index 0000000..eef69f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-circle-six-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-circle-three-fill.svg b/phosphor_orig/SVGs Flat/fill/number-circle-three-fill.svg new file mode 100644 index 0000000..56a8fbd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-circle-three-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-circle-two-fill.svg b/phosphor_orig/SVGs Flat/fill/number-circle-two-fill.svg new file mode 100644 index 0000000..673f45d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-circle-two-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-circle-zero-fill.svg b/phosphor_orig/SVGs Flat/fill/number-circle-zero-fill.svg new file mode 100644 index 0000000..2edfd6d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-circle-zero-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-eight-fill.svg b/phosphor_orig/SVGs Flat/fill/number-eight-fill.svg new file mode 100644 index 0000000..b647c3f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-eight-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-five-fill.svg b/phosphor_orig/SVGs Flat/fill/number-five-fill.svg new file mode 100644 index 0000000..9d039c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-five-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-four-fill.svg b/phosphor_orig/SVGs Flat/fill/number-four-fill.svg new file mode 100644 index 0000000..1edfe0d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-four-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-nine-fill.svg b/phosphor_orig/SVGs Flat/fill/number-nine-fill.svg new file mode 100644 index 0000000..175d36b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-nine-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-one-fill.svg b/phosphor_orig/SVGs Flat/fill/number-one-fill.svg new file mode 100644 index 0000000..337cbc7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-one-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-seven-fill.svg b/phosphor_orig/SVGs Flat/fill/number-seven-fill.svg new file mode 100644 index 0000000..9c22358 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-seven-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-six-fill.svg b/phosphor_orig/SVGs Flat/fill/number-six-fill.svg new file mode 100644 index 0000000..ad0ca98 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-six-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-square-eight-fill.svg b/phosphor_orig/SVGs Flat/fill/number-square-eight-fill.svg new file mode 100644 index 0000000..9e401c6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-square-eight-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-square-five-fill.svg b/phosphor_orig/SVGs Flat/fill/number-square-five-fill.svg new file mode 100644 index 0000000..fc3628c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-square-five-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-square-four-fill.svg b/phosphor_orig/SVGs Flat/fill/number-square-four-fill.svg new file mode 100644 index 0000000..bf4e93d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-square-four-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-square-nine-fill.svg b/phosphor_orig/SVGs Flat/fill/number-square-nine-fill.svg new file mode 100644 index 0000000..1be6710 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-square-nine-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-square-one-fill.svg b/phosphor_orig/SVGs Flat/fill/number-square-one-fill.svg new file mode 100644 index 0000000..8059a90 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-square-one-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-square-seven-fill.svg b/phosphor_orig/SVGs Flat/fill/number-square-seven-fill.svg new file mode 100644 index 0000000..a39dc44 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-square-seven-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-square-six-fill.svg b/phosphor_orig/SVGs Flat/fill/number-square-six-fill.svg new file mode 100644 index 0000000..c1dfe4f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-square-six-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-square-three-fill.svg b/phosphor_orig/SVGs Flat/fill/number-square-three-fill.svg new file mode 100644 index 0000000..9d571b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-square-three-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-square-two-fill.svg b/phosphor_orig/SVGs Flat/fill/number-square-two-fill.svg new file mode 100644 index 0000000..5b65c3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-square-two-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-square-zero-fill.svg b/phosphor_orig/SVGs Flat/fill/number-square-zero-fill.svg new file mode 100644 index 0000000..cba0af4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-square-zero-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-three-fill.svg b/phosphor_orig/SVGs Flat/fill/number-three-fill.svg new file mode 100644 index 0000000..9373749 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-three-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-two-fill.svg b/phosphor_orig/SVGs Flat/fill/number-two-fill.svg new file mode 100644 index 0000000..b38576a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-two-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/number-zero-fill.svg b/phosphor_orig/SVGs Flat/fill/number-zero-fill.svg new file mode 100644 index 0000000..5f10266 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/number-zero-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/numpad-fill.svg b/phosphor_orig/SVGs Flat/fill/numpad-fill.svg new file mode 100644 index 0000000..f1ca0e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/numpad-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/nut-fill.svg b/phosphor_orig/SVGs Flat/fill/nut-fill.svg new file mode 100644 index 0000000..daceb24 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/nut-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/ny-times-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/ny-times-logo-fill.svg new file mode 100644 index 0000000..2612f29 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/ny-times-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/octagon-fill.svg b/phosphor_orig/SVGs Flat/fill/octagon-fill.svg new file mode 100644 index 0000000..5e15768 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/octagon-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/office-chair-fill.svg b/phosphor_orig/SVGs Flat/fill/office-chair-fill.svg new file mode 100644 index 0000000..87d4032 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/office-chair-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/onigiri-fill.svg b/phosphor_orig/SVGs Flat/fill/onigiri-fill.svg new file mode 100644 index 0000000..d9aecfb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/onigiri-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/open-ai-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/open-ai-logo-fill.svg new file mode 100644 index 0000000..b28ee1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/open-ai-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/option-fill.svg b/phosphor_orig/SVGs Flat/fill/option-fill.svg new file mode 100644 index 0000000..188cf9a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/option-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/orange-fill.svg b/phosphor_orig/SVGs Flat/fill/orange-fill.svg new file mode 100644 index 0000000..215e086 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/orange-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/orange-slice-fill.svg b/phosphor_orig/SVGs Flat/fill/orange-slice-fill.svg new file mode 100644 index 0000000..3ba435a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/orange-slice-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/oven-fill.svg b/phosphor_orig/SVGs Flat/fill/oven-fill.svg new file mode 100644 index 0000000..f11ce3d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/oven-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/package-fill.svg b/phosphor_orig/SVGs Flat/fill/package-fill.svg new file mode 100644 index 0000000..e450776 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/package-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/paint-brush-broad-fill.svg b/phosphor_orig/SVGs Flat/fill/paint-brush-broad-fill.svg new file mode 100644 index 0000000..c8b7248 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/paint-brush-broad-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/paint-brush-fill.svg b/phosphor_orig/SVGs Flat/fill/paint-brush-fill.svg new file mode 100644 index 0000000..2be6797 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/paint-brush-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/paint-brush-household-fill.svg b/phosphor_orig/SVGs Flat/fill/paint-brush-household-fill.svg new file mode 100644 index 0000000..fb08ebb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/paint-brush-household-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/paint-bucket-fill.svg b/phosphor_orig/SVGs Flat/fill/paint-bucket-fill.svg new file mode 100644 index 0000000..46c85f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/paint-bucket-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/paint-roller-fill.svg b/phosphor_orig/SVGs Flat/fill/paint-roller-fill.svg new file mode 100644 index 0000000..1294854 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/paint-roller-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/palette-fill.svg b/phosphor_orig/SVGs Flat/fill/palette-fill.svg new file mode 100644 index 0000000..b67a6e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/palette-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/panorama-fill.svg b/phosphor_orig/SVGs Flat/fill/panorama-fill.svg new file mode 100644 index 0000000..a480cab --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/panorama-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pants-fill.svg b/phosphor_orig/SVGs Flat/fill/pants-fill.svg new file mode 100644 index 0000000..e6452df --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pants-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/paper-plane-fill.svg b/phosphor_orig/SVGs Flat/fill/paper-plane-fill.svg new file mode 100644 index 0000000..ceafd04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/paper-plane-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/paper-plane-right-fill.svg b/phosphor_orig/SVGs Flat/fill/paper-plane-right-fill.svg new file mode 100644 index 0000000..210a796 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/paper-plane-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/paper-plane-tilt-fill.svg b/phosphor_orig/SVGs Flat/fill/paper-plane-tilt-fill.svg new file mode 100644 index 0000000..c0381c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/paper-plane-tilt-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/paperclip-fill.svg b/phosphor_orig/SVGs Flat/fill/paperclip-fill.svg new file mode 100644 index 0000000..ae24692 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/paperclip-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/paperclip-horizontal-fill.svg b/phosphor_orig/SVGs Flat/fill/paperclip-horizontal-fill.svg new file mode 100644 index 0000000..15ca1a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/paperclip-horizontal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/parachute-fill.svg b/phosphor_orig/SVGs Flat/fill/parachute-fill.svg new file mode 100644 index 0000000..346768a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/parachute-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/paragraph-fill.svg b/phosphor_orig/SVGs Flat/fill/paragraph-fill.svg new file mode 100644 index 0000000..5f15ea5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/paragraph-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/parallelogram-fill.svg b/phosphor_orig/SVGs Flat/fill/parallelogram-fill.svg new file mode 100644 index 0000000..13ce4c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/parallelogram-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/park-fill.svg b/phosphor_orig/SVGs Flat/fill/park-fill.svg new file mode 100644 index 0000000..16b47c2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/park-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/password-fill.svg b/phosphor_orig/SVGs Flat/fill/password-fill.svg new file mode 100644 index 0000000..2c67af6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/password-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/path-fill.svg b/phosphor_orig/SVGs Flat/fill/path-fill.svg new file mode 100644 index 0000000..0c6d748 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/path-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/patreon-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/patreon-logo-fill.svg new file mode 100644 index 0000000..2f851ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/patreon-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pause-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/pause-circle-fill.svg new file mode 100644 index 0000000..535f447 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pause-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pause-fill.svg b/phosphor_orig/SVGs Flat/fill/pause-fill.svg new file mode 100644 index 0000000..76bf51d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pause-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/paw-print-fill.svg b/phosphor_orig/SVGs Flat/fill/paw-print-fill.svg new file mode 100644 index 0000000..87ebe33 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/paw-print-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/paypal-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/paypal-logo-fill.svg new file mode 100644 index 0000000..baf8fb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/paypal-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/peace-fill.svg b/phosphor_orig/SVGs Flat/fill/peace-fill.svg new file mode 100644 index 0000000..6d53c0e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/peace-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pen-fill.svg b/phosphor_orig/SVGs Flat/fill/pen-fill.svg new file mode 100644 index 0000000..a6a96d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pen-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pen-nib-fill.svg b/phosphor_orig/SVGs Flat/fill/pen-nib-fill.svg new file mode 100644 index 0000000..1444c9d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pen-nib-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pen-nib-straight-fill.svg b/phosphor_orig/SVGs Flat/fill/pen-nib-straight-fill.svg new file mode 100644 index 0000000..111603f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pen-nib-straight-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pencil-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/pencil-circle-fill.svg new file mode 100644 index 0000000..3ac78d0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pencil-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pencil-fill.svg b/phosphor_orig/SVGs Flat/fill/pencil-fill.svg new file mode 100644 index 0000000..77a5528 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pencil-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pencil-line-fill.svg b/phosphor_orig/SVGs Flat/fill/pencil-line-fill.svg new file mode 100644 index 0000000..c25346b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pencil-line-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pencil-ruler-fill.svg b/phosphor_orig/SVGs Flat/fill/pencil-ruler-fill.svg new file mode 100644 index 0000000..6867a64 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pencil-ruler-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pencil-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/pencil-simple-fill.svg new file mode 100644 index 0000000..bf5bbdc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pencil-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pencil-simple-line-fill.svg b/phosphor_orig/SVGs Flat/fill/pencil-simple-line-fill.svg new file mode 100644 index 0000000..06754f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pencil-simple-line-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pencil-simple-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/pencil-simple-slash-fill.svg new file mode 100644 index 0000000..13e3606 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pencil-simple-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pencil-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/pencil-slash-fill.svg new file mode 100644 index 0000000..6a8476a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pencil-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pentagon-fill.svg b/phosphor_orig/SVGs Flat/fill/pentagon-fill.svg new file mode 100644 index 0000000..4a3cc21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pentagon-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pentagram-fill.svg b/phosphor_orig/SVGs Flat/fill/pentagram-fill.svg new file mode 100644 index 0000000..d724403 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pentagram-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pepper-fill.svg b/phosphor_orig/SVGs Flat/fill/pepper-fill.svg new file mode 100644 index 0000000..08edc11 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pepper-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/percent-fill.svg b/phosphor_orig/SVGs Flat/fill/percent-fill.svg new file mode 100644 index 0000000..fd842b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/percent-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/person-arms-spread-fill.svg b/phosphor_orig/SVGs Flat/fill/person-arms-spread-fill.svg new file mode 100644 index 0000000..fca3eb0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/person-arms-spread-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/person-fill.svg b/phosphor_orig/SVGs Flat/fill/person-fill.svg new file mode 100644 index 0000000..437bc7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/person-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/person-simple-bike-fill.svg b/phosphor_orig/SVGs Flat/fill/person-simple-bike-fill.svg new file mode 100644 index 0000000..9e66a92 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/person-simple-bike-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/person-simple-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/person-simple-circle-fill.svg new file mode 100644 index 0000000..ff5b8f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/person-simple-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/person-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/person-simple-fill.svg new file mode 100644 index 0000000..eaeaffc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/person-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/person-simple-hike-fill.svg b/phosphor_orig/SVGs Flat/fill/person-simple-hike-fill.svg new file mode 100644 index 0000000..ce356df --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/person-simple-hike-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/person-simple-run-fill.svg b/phosphor_orig/SVGs Flat/fill/person-simple-run-fill.svg new file mode 100644 index 0000000..1d24d28 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/person-simple-run-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/person-simple-ski-fill.svg b/phosphor_orig/SVGs Flat/fill/person-simple-ski-fill.svg new file mode 100644 index 0000000..3a01444 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/person-simple-ski-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/person-simple-snowboard-fill.svg b/phosphor_orig/SVGs Flat/fill/person-simple-snowboard-fill.svg new file mode 100644 index 0000000..55f6670 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/person-simple-snowboard-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/person-simple-swim-fill.svg b/phosphor_orig/SVGs Flat/fill/person-simple-swim-fill.svg new file mode 100644 index 0000000..2b418e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/person-simple-swim-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/person-simple-tai-chi-fill.svg b/phosphor_orig/SVGs Flat/fill/person-simple-tai-chi-fill.svg new file mode 100644 index 0000000..be06231 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/person-simple-tai-chi-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/person-simple-throw-fill.svg b/phosphor_orig/SVGs Flat/fill/person-simple-throw-fill.svg new file mode 100644 index 0000000..267a9df --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/person-simple-throw-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/person-simple-walk-fill.svg b/phosphor_orig/SVGs Flat/fill/person-simple-walk-fill.svg new file mode 100644 index 0000000..d003d1e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/person-simple-walk-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/perspective-fill.svg b/phosphor_orig/SVGs Flat/fill/perspective-fill.svg new file mode 100644 index 0000000..3501881 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/perspective-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/phone-call-fill.svg b/phosphor_orig/SVGs Flat/fill/phone-call-fill.svg new file mode 100644 index 0000000..c1009cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/phone-call-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/phone-disconnect-fill.svg b/phosphor_orig/SVGs Flat/fill/phone-disconnect-fill.svg new file mode 100644 index 0000000..b48c669 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/phone-disconnect-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/phone-fill.svg b/phosphor_orig/SVGs Flat/fill/phone-fill.svg new file mode 100644 index 0000000..9a8877f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/phone-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/phone-incoming-fill.svg b/phosphor_orig/SVGs Flat/fill/phone-incoming-fill.svg new file mode 100644 index 0000000..6a07188 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/phone-incoming-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/phone-list-fill.svg b/phosphor_orig/SVGs Flat/fill/phone-list-fill.svg new file mode 100644 index 0000000..0ec8ab1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/phone-list-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/phone-outgoing-fill.svg b/phosphor_orig/SVGs Flat/fill/phone-outgoing-fill.svg new file mode 100644 index 0000000..d4fb256 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/phone-outgoing-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/phone-pause-fill.svg b/phosphor_orig/SVGs Flat/fill/phone-pause-fill.svg new file mode 100644 index 0000000..bb0bdcf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/phone-pause-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/phone-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/phone-plus-fill.svg new file mode 100644 index 0000000..e16b9f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/phone-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/phone-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/phone-slash-fill.svg new file mode 100644 index 0000000..4b4a9e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/phone-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/phone-transfer-fill.svg b/phosphor_orig/SVGs Flat/fill/phone-transfer-fill.svg new file mode 100644 index 0000000..353fab7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/phone-transfer-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/phone-x-fill.svg b/phosphor_orig/SVGs Flat/fill/phone-x-fill.svg new file mode 100644 index 0000000..528ff73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/phone-x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/phosphor-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/phosphor-logo-fill.svg new file mode 100644 index 0000000..85a4108 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/phosphor-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pi-fill.svg b/phosphor_orig/SVGs Flat/fill/pi-fill.svg new file mode 100644 index 0000000..f95b57f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pi-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/piano-keys-fill.svg b/phosphor_orig/SVGs Flat/fill/piano-keys-fill.svg new file mode 100644 index 0000000..3cde50f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/piano-keys-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/picnic-table-fill.svg b/phosphor_orig/SVGs Flat/fill/picnic-table-fill.svg new file mode 100644 index 0000000..f26ab50 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/picnic-table-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/picture-in-picture-fill.svg b/phosphor_orig/SVGs Flat/fill/picture-in-picture-fill.svg new file mode 100644 index 0000000..91a3c83 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/picture-in-picture-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/piggy-bank-fill.svg b/phosphor_orig/SVGs Flat/fill/piggy-bank-fill.svg new file mode 100644 index 0000000..00b0bb8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/piggy-bank-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pill-fill.svg b/phosphor_orig/SVGs Flat/fill/pill-fill.svg new file mode 100644 index 0000000..26c24b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pill-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/ping-pong-fill.svg b/phosphor_orig/SVGs Flat/fill/ping-pong-fill.svg new file mode 100644 index 0000000..bab1358 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/ping-pong-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pint-glass-fill.svg b/phosphor_orig/SVGs Flat/fill/pint-glass-fill.svg new file mode 100644 index 0000000..232ecab --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pint-glass-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pinterest-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/pinterest-logo-fill.svg new file mode 100644 index 0000000..d1ed3ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pinterest-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pinwheel-fill.svg b/phosphor_orig/SVGs Flat/fill/pinwheel-fill.svg new file mode 100644 index 0000000..38644e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pinwheel-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pipe-fill.svg b/phosphor_orig/SVGs Flat/fill/pipe-fill.svg new file mode 100644 index 0000000..eddca13 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pipe-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pipe-wrench-fill.svg b/phosphor_orig/SVGs Flat/fill/pipe-wrench-fill.svg new file mode 100644 index 0000000..682aed7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pipe-wrench-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pix-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/pix-logo-fill.svg new file mode 100644 index 0000000..477f8e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pix-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pizza-fill.svg b/phosphor_orig/SVGs Flat/fill/pizza-fill.svg new file mode 100644 index 0000000..ffe73d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pizza-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/placeholder-fill.svg b/phosphor_orig/SVGs Flat/fill/placeholder-fill.svg new file mode 100644 index 0000000..25d3afd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/placeholder-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/planet-fill.svg b/phosphor_orig/SVGs Flat/fill/planet-fill.svg new file mode 100644 index 0000000..15d66b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/planet-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/plant-fill.svg b/phosphor_orig/SVGs Flat/fill/plant-fill.svg new file mode 100644 index 0000000..86f2d91 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/plant-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/play-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/play-circle-fill.svg new file mode 100644 index 0000000..d24ba48 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/play-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/play-fill.svg b/phosphor_orig/SVGs Flat/fill/play-fill.svg new file mode 100644 index 0000000..bf2bfb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/play-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/play-pause-fill.svg b/phosphor_orig/SVGs Flat/fill/play-pause-fill.svg new file mode 100644 index 0000000..d735b34 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/play-pause-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/playlist-fill.svg b/phosphor_orig/SVGs Flat/fill/playlist-fill.svg new file mode 100644 index 0000000..6c5d893 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/playlist-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/plug-charging-fill.svg b/phosphor_orig/SVGs Flat/fill/plug-charging-fill.svg new file mode 100644 index 0000000..b13824c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/plug-charging-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/plug-fill.svg b/phosphor_orig/SVGs Flat/fill/plug-fill.svg new file mode 100644 index 0000000..a70914a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/plug-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/plugs-connected-fill.svg b/phosphor_orig/SVGs Flat/fill/plugs-connected-fill.svg new file mode 100644 index 0000000..3f4c3da --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/plugs-connected-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/plugs-fill.svg b/phosphor_orig/SVGs Flat/fill/plugs-fill.svg new file mode 100644 index 0000000..a01a5aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/plugs-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/plus-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/plus-circle-fill.svg new file mode 100644 index 0000000..634d58f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/plus-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/plus-fill.svg b/phosphor_orig/SVGs Flat/fill/plus-fill.svg new file mode 100644 index 0000000..ea8c9e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/plus-minus-fill.svg b/phosphor_orig/SVGs Flat/fill/plus-minus-fill.svg new file mode 100644 index 0000000..afcf6d6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/plus-minus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/plus-square-fill.svg b/phosphor_orig/SVGs Flat/fill/plus-square-fill.svg new file mode 100644 index 0000000..07af8c3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/plus-square-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/poker-chip-fill.svg b/phosphor_orig/SVGs Flat/fill/poker-chip-fill.svg new file mode 100644 index 0000000..4f366fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/poker-chip-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/police-car-fill.svg b/phosphor_orig/SVGs Flat/fill/police-car-fill.svg new file mode 100644 index 0000000..6d7052a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/police-car-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/polygon-fill.svg b/phosphor_orig/SVGs Flat/fill/polygon-fill.svg new file mode 100644 index 0000000..cb7058d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/polygon-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/popcorn-fill.svg b/phosphor_orig/SVGs Flat/fill/popcorn-fill.svg new file mode 100644 index 0000000..56f4778 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/popcorn-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/popsicle-fill.svg b/phosphor_orig/SVGs Flat/fill/popsicle-fill.svg new file mode 100644 index 0000000..92944fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/popsicle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/potted-plant-fill.svg b/phosphor_orig/SVGs Flat/fill/potted-plant-fill.svg new file mode 100644 index 0000000..6f2b3cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/potted-plant-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/power-fill.svg b/phosphor_orig/SVGs Flat/fill/power-fill.svg new file mode 100644 index 0000000..cf48396 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/power-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/prescription-fill.svg b/phosphor_orig/SVGs Flat/fill/prescription-fill.svg new file mode 100644 index 0000000..a52df4a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/prescription-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/presentation-chart-fill.svg b/phosphor_orig/SVGs Flat/fill/presentation-chart-fill.svg new file mode 100644 index 0000000..50559ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/presentation-chart-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/presentation-fill.svg b/phosphor_orig/SVGs Flat/fill/presentation-fill.svg new file mode 100644 index 0000000..7b66e9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/presentation-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/printer-fill.svg b/phosphor_orig/SVGs Flat/fill/printer-fill.svg new file mode 100644 index 0000000..57f925c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/printer-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/prohibit-fill.svg b/phosphor_orig/SVGs Flat/fill/prohibit-fill.svg new file mode 100644 index 0000000..b87a40c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/prohibit-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/prohibit-inset-fill.svg b/phosphor_orig/SVGs Flat/fill/prohibit-inset-fill.svg new file mode 100644 index 0000000..d9e4836 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/prohibit-inset-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/projector-screen-chart-fill.svg b/phosphor_orig/SVGs Flat/fill/projector-screen-chart-fill.svg new file mode 100644 index 0000000..2be9e06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/projector-screen-chart-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/projector-screen-fill.svg b/phosphor_orig/SVGs Flat/fill/projector-screen-fill.svg new file mode 100644 index 0000000..d64f1de --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/projector-screen-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/pulse-fill.svg b/phosphor_orig/SVGs Flat/fill/pulse-fill.svg new file mode 100644 index 0000000..ad452a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/pulse-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/push-pin-fill.svg b/phosphor_orig/SVGs Flat/fill/push-pin-fill.svg new file mode 100644 index 0000000..ed35c2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/push-pin-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/push-pin-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/push-pin-simple-fill.svg new file mode 100644 index 0000000..b512121 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/push-pin-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/push-pin-simple-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/push-pin-simple-slash-fill.svg new file mode 100644 index 0000000..f7e9094 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/push-pin-simple-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/push-pin-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/push-pin-slash-fill.svg new file mode 100644 index 0000000..65dcdb7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/push-pin-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/puzzle-piece-fill.svg b/phosphor_orig/SVGs Flat/fill/puzzle-piece-fill.svg new file mode 100644 index 0000000..8d6b4af --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/puzzle-piece-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/qr-code-fill.svg b/phosphor_orig/SVGs Flat/fill/qr-code-fill.svg new file mode 100644 index 0000000..63e5787 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/qr-code-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/question-fill.svg b/phosphor_orig/SVGs Flat/fill/question-fill.svg new file mode 100644 index 0000000..e2e35aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/question-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/question-mark-fill.svg b/phosphor_orig/SVGs Flat/fill/question-mark-fill.svg new file mode 100644 index 0000000..18affb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/question-mark-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/queue-fill.svg b/phosphor_orig/SVGs Flat/fill/queue-fill.svg new file mode 100644 index 0000000..1c9671c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/queue-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/quotes-fill.svg b/phosphor_orig/SVGs Flat/fill/quotes-fill.svg new file mode 100644 index 0000000..8e98865 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/quotes-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/rabbit-fill.svg b/phosphor_orig/SVGs Flat/fill/rabbit-fill.svg new file mode 100644 index 0000000..35099f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/rabbit-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/racquet-fill.svg b/phosphor_orig/SVGs Flat/fill/racquet-fill.svg new file mode 100644 index 0000000..5b31b3f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/racquet-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/radical-fill.svg b/phosphor_orig/SVGs Flat/fill/radical-fill.svg new file mode 100644 index 0000000..e91829e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/radical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/radio-button-fill.svg b/phosphor_orig/SVGs Flat/fill/radio-button-fill.svg new file mode 100644 index 0000000..52aa0bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/radio-button-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/radio-fill.svg b/phosphor_orig/SVGs Flat/fill/radio-fill.svg new file mode 100644 index 0000000..9377fee --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/radio-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/radioactive-fill.svg b/phosphor_orig/SVGs Flat/fill/radioactive-fill.svg new file mode 100644 index 0000000..ed9d47a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/radioactive-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/rainbow-cloud-fill.svg b/phosphor_orig/SVGs Flat/fill/rainbow-cloud-fill.svg new file mode 100644 index 0000000..fd7e6f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/rainbow-cloud-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/rainbow-fill.svg b/phosphor_orig/SVGs Flat/fill/rainbow-fill.svg new file mode 100644 index 0000000..6f950cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/rainbow-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/ranking-fill.svg b/phosphor_orig/SVGs Flat/fill/ranking-fill.svg new file mode 100644 index 0000000..a990692 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/ranking-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/read-cv-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/read-cv-logo-fill.svg new file mode 100644 index 0000000..930ead0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/read-cv-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/receipt-fill.svg b/phosphor_orig/SVGs Flat/fill/receipt-fill.svg new file mode 100644 index 0000000..a6a4730 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/receipt-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/receipt-x-fill.svg b/phosphor_orig/SVGs Flat/fill/receipt-x-fill.svg new file mode 100644 index 0000000..a04d10b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/receipt-x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/record-fill.svg b/phosphor_orig/SVGs Flat/fill/record-fill.svg new file mode 100644 index 0000000..4472fd7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/record-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/rectangle-dashed-fill.svg b/phosphor_orig/SVGs Flat/fill/rectangle-dashed-fill.svg new file mode 100644 index 0000000..a2f0d86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/rectangle-dashed-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/rectangle-fill.svg b/phosphor_orig/SVGs Flat/fill/rectangle-fill.svg new file mode 100644 index 0000000..5b9f57a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/rectangle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/recycle-fill.svg b/phosphor_orig/SVGs Flat/fill/recycle-fill.svg new file mode 100644 index 0000000..692cf48 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/recycle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/reddit-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/reddit-logo-fill.svg new file mode 100644 index 0000000..ff54e50 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/reddit-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/repeat-fill.svg b/phosphor_orig/SVGs Flat/fill/repeat-fill.svg new file mode 100644 index 0000000..5c7996f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/repeat-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/repeat-once-fill.svg b/phosphor_orig/SVGs Flat/fill/repeat-once-fill.svg new file mode 100644 index 0000000..b86176b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/repeat-once-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/replit-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/replit-logo-fill.svg new file mode 100644 index 0000000..7252962 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/replit-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/resize-fill.svg b/phosphor_orig/SVGs Flat/fill/resize-fill.svg new file mode 100644 index 0000000..94f73da --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/resize-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/rewind-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/rewind-circle-fill.svg new file mode 100644 index 0000000..1678ccc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/rewind-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/rewind-fill.svg b/phosphor_orig/SVGs Flat/fill/rewind-fill.svg new file mode 100644 index 0000000..7885f4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/rewind-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/road-horizon-fill.svg b/phosphor_orig/SVGs Flat/fill/road-horizon-fill.svg new file mode 100644 index 0000000..c79ca5a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/road-horizon-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/robot-fill.svg b/phosphor_orig/SVGs Flat/fill/robot-fill.svg new file mode 100644 index 0000000..0faeb09 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/robot-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/rocket-fill.svg b/phosphor_orig/SVGs Flat/fill/rocket-fill.svg new file mode 100644 index 0000000..dc34125 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/rocket-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/rocket-launch-fill.svg b/phosphor_orig/SVGs Flat/fill/rocket-launch-fill.svg new file mode 100644 index 0000000..b09e3e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/rocket-launch-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/rows-fill.svg b/phosphor_orig/SVGs Flat/fill/rows-fill.svg new file mode 100644 index 0000000..66e4960 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/rows-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/rows-plus-bottom-fill.svg b/phosphor_orig/SVGs Flat/fill/rows-plus-bottom-fill.svg new file mode 100644 index 0000000..162ccdf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/rows-plus-bottom-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/rows-plus-top-fill.svg b/phosphor_orig/SVGs Flat/fill/rows-plus-top-fill.svg new file mode 100644 index 0000000..1e46502 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/rows-plus-top-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/rss-fill.svg b/phosphor_orig/SVGs Flat/fill/rss-fill.svg new file mode 100644 index 0000000..4b6c814 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/rss-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/rss-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/rss-simple-fill.svg new file mode 100644 index 0000000..1ad443b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/rss-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/rug-fill.svg b/phosphor_orig/SVGs Flat/fill/rug-fill.svg new file mode 100644 index 0000000..cf7e8e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/rug-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/ruler-fill.svg b/phosphor_orig/SVGs Flat/fill/ruler-fill.svg new file mode 100644 index 0000000..367f582 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/ruler-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sailboat-fill.svg b/phosphor_orig/SVGs Flat/fill/sailboat-fill.svg new file mode 100644 index 0000000..cfb675c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sailboat-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/scales-fill.svg b/phosphor_orig/SVGs Flat/fill/scales-fill.svg new file mode 100644 index 0000000..5eccd43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/scales-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/scan-fill.svg b/phosphor_orig/SVGs Flat/fill/scan-fill.svg new file mode 100644 index 0000000..0233003 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/scan-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/scan-smiley-fill.svg b/phosphor_orig/SVGs Flat/fill/scan-smiley-fill.svg new file mode 100644 index 0000000..71bc9be --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/scan-smiley-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/scissors-fill.svg b/phosphor_orig/SVGs Flat/fill/scissors-fill.svg new file mode 100644 index 0000000..504b59d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/scissors-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/scooter-fill.svg b/phosphor_orig/SVGs Flat/fill/scooter-fill.svg new file mode 100644 index 0000000..45fe148 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/scooter-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/screencast-fill.svg b/phosphor_orig/SVGs Flat/fill/screencast-fill.svg new file mode 100644 index 0000000..b532076 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/screencast-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/screwdriver-fill.svg b/phosphor_orig/SVGs Flat/fill/screwdriver-fill.svg new file mode 100644 index 0000000..33e8c63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/screwdriver-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/scribble-fill.svg b/phosphor_orig/SVGs Flat/fill/scribble-fill.svg new file mode 100644 index 0000000..93e18c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/scribble-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/scribble-loop-fill.svg b/phosphor_orig/SVGs Flat/fill/scribble-loop-fill.svg new file mode 100644 index 0000000..e740750 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/scribble-loop-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/scroll-fill.svg b/phosphor_orig/SVGs Flat/fill/scroll-fill.svg new file mode 100644 index 0000000..b988344 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/scroll-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/seal-check-fill.svg b/phosphor_orig/SVGs Flat/fill/seal-check-fill.svg new file mode 100644 index 0000000..db72bd0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/seal-check-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/seal-fill.svg b/phosphor_orig/SVGs Flat/fill/seal-fill.svg new file mode 100644 index 0000000..958d883 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/seal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/seal-percent-fill.svg b/phosphor_orig/SVGs Flat/fill/seal-percent-fill.svg new file mode 100644 index 0000000..b68049e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/seal-percent-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/seal-question-fill.svg b/phosphor_orig/SVGs Flat/fill/seal-question-fill.svg new file mode 100644 index 0000000..9ee5978 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/seal-question-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/seal-warning-fill.svg b/phosphor_orig/SVGs Flat/fill/seal-warning-fill.svg new file mode 100644 index 0000000..807a3b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/seal-warning-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/seat-fill.svg b/phosphor_orig/SVGs Flat/fill/seat-fill.svg new file mode 100644 index 0000000..72a9033 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/seat-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/seatbelt-fill.svg b/phosphor_orig/SVGs Flat/fill/seatbelt-fill.svg new file mode 100644 index 0000000..a8ce190 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/seatbelt-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/security-camera-fill.svg b/phosphor_orig/SVGs Flat/fill/security-camera-fill.svg new file mode 100644 index 0000000..2ee796d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/security-camera-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/selection-all-fill.svg b/phosphor_orig/SVGs Flat/fill/selection-all-fill.svg new file mode 100644 index 0000000..47424d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/selection-all-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/selection-background-fill.svg b/phosphor_orig/SVGs Flat/fill/selection-background-fill.svg new file mode 100644 index 0000000..e52a3e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/selection-background-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/selection-fill.svg b/phosphor_orig/SVGs Flat/fill/selection-fill.svg new file mode 100644 index 0000000..561a170 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/selection-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/selection-foreground-fill.svg b/phosphor_orig/SVGs Flat/fill/selection-foreground-fill.svg new file mode 100644 index 0000000..0b0d28a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/selection-foreground-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/selection-inverse-fill.svg b/phosphor_orig/SVGs Flat/fill/selection-inverse-fill.svg new file mode 100644 index 0000000..ad808da --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/selection-inverse-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/selection-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/selection-plus-fill.svg new file mode 100644 index 0000000..c08361a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/selection-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/selection-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/selection-slash-fill.svg new file mode 100644 index 0000000..c6db89a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/selection-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shapes-fill.svg b/phosphor_orig/SVGs Flat/fill/shapes-fill.svg new file mode 100644 index 0000000..40d64cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shapes-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/share-fat-fill.svg b/phosphor_orig/SVGs Flat/fill/share-fat-fill.svg new file mode 100644 index 0000000..5cc3aec --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/share-fat-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/share-fill.svg b/phosphor_orig/SVGs Flat/fill/share-fill.svg new file mode 100644 index 0000000..415093a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/share-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/share-network-fill.svg b/phosphor_orig/SVGs Flat/fill/share-network-fill.svg new file mode 100644 index 0000000..a1c3406 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/share-network-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shield-check-fill.svg b/phosphor_orig/SVGs Flat/fill/shield-check-fill.svg new file mode 100644 index 0000000..2c88027 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shield-check-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shield-checkered-fill.svg b/phosphor_orig/SVGs Flat/fill/shield-checkered-fill.svg new file mode 100644 index 0000000..9ebf3ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shield-checkered-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shield-chevron-fill.svg b/phosphor_orig/SVGs Flat/fill/shield-chevron-fill.svg new file mode 100644 index 0000000..7344ab0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shield-chevron-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shield-fill.svg b/phosphor_orig/SVGs Flat/fill/shield-fill.svg new file mode 100644 index 0000000..e435040 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shield-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shield-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/shield-plus-fill.svg new file mode 100644 index 0000000..411112f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shield-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shield-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/shield-slash-fill.svg new file mode 100644 index 0000000..ca2b363 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shield-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shield-star-fill.svg b/phosphor_orig/SVGs Flat/fill/shield-star-fill.svg new file mode 100644 index 0000000..85cb697 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shield-star-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shield-warning-fill.svg b/phosphor_orig/SVGs Flat/fill/shield-warning-fill.svg new file mode 100644 index 0000000..d87586e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shield-warning-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shipping-container-fill.svg b/phosphor_orig/SVGs Flat/fill/shipping-container-fill.svg new file mode 100644 index 0000000..098b843 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shipping-container-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shirt-folded-fill.svg b/phosphor_orig/SVGs Flat/fill/shirt-folded-fill.svg new file mode 100644 index 0000000..5f3f4e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shirt-folded-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shooting-star-fill.svg b/phosphor_orig/SVGs Flat/fill/shooting-star-fill.svg new file mode 100644 index 0000000..452a7e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shooting-star-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shopping-bag-fill.svg b/phosphor_orig/SVGs Flat/fill/shopping-bag-fill.svg new file mode 100644 index 0000000..9bd6aff --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shopping-bag-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shopping-bag-open-fill.svg b/phosphor_orig/SVGs Flat/fill/shopping-bag-open-fill.svg new file mode 100644 index 0000000..4aaaa61 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shopping-bag-open-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shopping-cart-fill.svg b/phosphor_orig/SVGs Flat/fill/shopping-cart-fill.svg new file mode 100644 index 0000000..89a171a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shopping-cart-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shopping-cart-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/shopping-cart-simple-fill.svg new file mode 100644 index 0000000..e76a56f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shopping-cart-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shovel-fill.svg b/phosphor_orig/SVGs Flat/fill/shovel-fill.svg new file mode 100644 index 0000000..f7da40f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shovel-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shower-fill.svg b/phosphor_orig/SVGs Flat/fill/shower-fill.svg new file mode 100644 index 0000000..401c930 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shower-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shrimp-fill.svg b/phosphor_orig/SVGs Flat/fill/shrimp-fill.svg new file mode 100644 index 0000000..8c25da1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shrimp-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shuffle-angular-fill.svg b/phosphor_orig/SVGs Flat/fill/shuffle-angular-fill.svg new file mode 100644 index 0000000..c84aae0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shuffle-angular-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shuffle-fill.svg b/phosphor_orig/SVGs Flat/fill/shuffle-fill.svg new file mode 100644 index 0000000..c2b17bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shuffle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/shuffle-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/shuffle-simple-fill.svg new file mode 100644 index 0000000..5632101 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/shuffle-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sidebar-fill.svg b/phosphor_orig/SVGs Flat/fill/sidebar-fill.svg new file mode 100644 index 0000000..b44fcca --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sidebar-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sidebar-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/sidebar-simple-fill.svg new file mode 100644 index 0000000..4be632f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sidebar-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sigma-fill.svg b/phosphor_orig/SVGs Flat/fill/sigma-fill.svg new file mode 100644 index 0000000..1646d09 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sigma-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sign-in-fill.svg b/phosphor_orig/SVGs Flat/fill/sign-in-fill.svg new file mode 100644 index 0000000..cca812b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sign-in-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sign-out-fill.svg b/phosphor_orig/SVGs Flat/fill/sign-out-fill.svg new file mode 100644 index 0000000..c4fd239 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sign-out-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/signature-fill.svg b/phosphor_orig/SVGs Flat/fill/signature-fill.svg new file mode 100644 index 0000000..c5f39a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/signature-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/signpost-fill.svg b/phosphor_orig/SVGs Flat/fill/signpost-fill.svg new file mode 100644 index 0000000..ec7e8f0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/signpost-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sim-card-fill.svg b/phosphor_orig/SVGs Flat/fill/sim-card-fill.svg new file mode 100644 index 0000000..1aefcb7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sim-card-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/siren-fill.svg b/phosphor_orig/SVGs Flat/fill/siren-fill.svg new file mode 100644 index 0000000..94beb3d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/siren-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sketch-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/sketch-logo-fill.svg new file mode 100644 index 0000000..4d2c4f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sketch-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/skip-back-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/skip-back-circle-fill.svg new file mode 100644 index 0000000..ad20582 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/skip-back-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/skip-back-fill.svg b/phosphor_orig/SVGs Flat/fill/skip-back-fill.svg new file mode 100644 index 0000000..5dbd762 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/skip-back-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/skip-forward-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/skip-forward-circle-fill.svg new file mode 100644 index 0000000..67d9119 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/skip-forward-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/skip-forward-fill.svg b/phosphor_orig/SVGs Flat/fill/skip-forward-fill.svg new file mode 100644 index 0000000..75f5f4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/skip-forward-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/skull-fill.svg b/phosphor_orig/SVGs Flat/fill/skull-fill.svg new file mode 100644 index 0000000..e761b27 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/skull-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/skype-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/skype-logo-fill.svg new file mode 100644 index 0000000..50cfef0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/skype-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/slack-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/slack-logo-fill.svg new file mode 100644 index 0000000..dc8140e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/slack-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sliders-fill.svg b/phosphor_orig/SVGs Flat/fill/sliders-fill.svg new file mode 100644 index 0000000..7043334 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sliders-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sliders-horizontal-fill.svg b/phosphor_orig/SVGs Flat/fill/sliders-horizontal-fill.svg new file mode 100644 index 0000000..bebe1ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sliders-horizontal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/slideshow-fill.svg b/phosphor_orig/SVGs Flat/fill/slideshow-fill.svg new file mode 100644 index 0000000..af02d2c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/slideshow-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/smiley-angry-fill.svg b/phosphor_orig/SVGs Flat/fill/smiley-angry-fill.svg new file mode 100644 index 0000000..34e144b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/smiley-angry-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/smiley-blank-fill.svg b/phosphor_orig/SVGs Flat/fill/smiley-blank-fill.svg new file mode 100644 index 0000000..841e146 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/smiley-blank-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/smiley-fill.svg b/phosphor_orig/SVGs Flat/fill/smiley-fill.svg new file mode 100644 index 0000000..ed26b1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/smiley-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/smiley-meh-fill.svg b/phosphor_orig/SVGs Flat/fill/smiley-meh-fill.svg new file mode 100644 index 0000000..5280990 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/smiley-meh-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/smiley-melting-fill.svg b/phosphor_orig/SVGs Flat/fill/smiley-melting-fill.svg new file mode 100644 index 0000000..06a719d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/smiley-melting-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/smiley-nervous-fill.svg b/phosphor_orig/SVGs Flat/fill/smiley-nervous-fill.svg new file mode 100644 index 0000000..e490e84 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/smiley-nervous-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/smiley-sad-fill.svg b/phosphor_orig/SVGs Flat/fill/smiley-sad-fill.svg new file mode 100644 index 0000000..94ee7a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/smiley-sad-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/smiley-sticker-fill.svg b/phosphor_orig/SVGs Flat/fill/smiley-sticker-fill.svg new file mode 100644 index 0000000..de3d53a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/smiley-sticker-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/smiley-wink-fill.svg b/phosphor_orig/SVGs Flat/fill/smiley-wink-fill.svg new file mode 100644 index 0000000..cd47e06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/smiley-wink-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/smiley-x-eyes-fill.svg b/phosphor_orig/SVGs Flat/fill/smiley-x-eyes-fill.svg new file mode 100644 index 0000000..1fd3469 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/smiley-x-eyes-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/snapchat-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/snapchat-logo-fill.svg new file mode 100644 index 0000000..8dde1ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/snapchat-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sneaker-fill.svg b/phosphor_orig/SVGs Flat/fill/sneaker-fill.svg new file mode 100644 index 0000000..d09974e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sneaker-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sneaker-move-fill.svg b/phosphor_orig/SVGs Flat/fill/sneaker-move-fill.svg new file mode 100644 index 0000000..cac9fb5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sneaker-move-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/snowflake-fill.svg b/phosphor_orig/SVGs Flat/fill/snowflake-fill.svg new file mode 100644 index 0000000..5aba64a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/snowflake-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/soccer-ball-fill.svg b/phosphor_orig/SVGs Flat/fill/soccer-ball-fill.svg new file mode 100644 index 0000000..f5c76ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/soccer-ball-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sock-fill.svg b/phosphor_orig/SVGs Flat/fill/sock-fill.svg new file mode 100644 index 0000000..81a2a4a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sock-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/solar-panel-fill.svg b/phosphor_orig/SVGs Flat/fill/solar-panel-fill.svg new file mode 100644 index 0000000..257522b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/solar-panel-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/solar-roof-fill.svg b/phosphor_orig/SVGs Flat/fill/solar-roof-fill.svg new file mode 100644 index 0000000..ae0e891 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/solar-roof-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sort-ascending-fill.svg b/phosphor_orig/SVGs Flat/fill/sort-ascending-fill.svg new file mode 100644 index 0000000..39e1b27 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sort-ascending-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sort-descending-fill.svg b/phosphor_orig/SVGs Flat/fill/sort-descending-fill.svg new file mode 100644 index 0000000..15e0ef8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sort-descending-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/soundcloud-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/soundcloud-logo-fill.svg new file mode 100644 index 0000000..18b6b1c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/soundcloud-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/spade-fill.svg b/phosphor_orig/SVGs Flat/fill/spade-fill.svg new file mode 100644 index 0000000..da30452 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/spade-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sparkle-fill.svg b/phosphor_orig/SVGs Flat/fill/sparkle-fill.svg new file mode 100644 index 0000000..f684ecc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sparkle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/speaker-hifi-fill.svg b/phosphor_orig/SVGs Flat/fill/speaker-hifi-fill.svg new file mode 100644 index 0000000..f7a781d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/speaker-hifi-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/speaker-high-fill.svg b/phosphor_orig/SVGs Flat/fill/speaker-high-fill.svg new file mode 100644 index 0000000..5139fe9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/speaker-high-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/speaker-low-fill.svg b/phosphor_orig/SVGs Flat/fill/speaker-low-fill.svg new file mode 100644 index 0000000..9d35b4f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/speaker-low-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/speaker-none-fill.svg b/phosphor_orig/SVGs Flat/fill/speaker-none-fill.svg new file mode 100644 index 0000000..7dbc2a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/speaker-none-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/speaker-simple-high-fill.svg b/phosphor_orig/SVGs Flat/fill/speaker-simple-high-fill.svg new file mode 100644 index 0000000..72c6134 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/speaker-simple-high-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/speaker-simple-low-fill.svg b/phosphor_orig/SVGs Flat/fill/speaker-simple-low-fill.svg new file mode 100644 index 0000000..6caaa12 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/speaker-simple-low-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/speaker-simple-none-fill.svg b/phosphor_orig/SVGs Flat/fill/speaker-simple-none-fill.svg new file mode 100644 index 0000000..7c2ad3c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/speaker-simple-none-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/speaker-simple-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/speaker-simple-slash-fill.svg new file mode 100644 index 0000000..8a01834 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/speaker-simple-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/speaker-simple-x-fill.svg b/phosphor_orig/SVGs Flat/fill/speaker-simple-x-fill.svg new file mode 100644 index 0000000..a4023fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/speaker-simple-x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/speaker-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/speaker-slash-fill.svg new file mode 100644 index 0000000..55a2944 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/speaker-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/speaker-x-fill.svg b/phosphor_orig/SVGs Flat/fill/speaker-x-fill.svg new file mode 100644 index 0000000..6075de7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/speaker-x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/speedometer-fill.svg b/phosphor_orig/SVGs Flat/fill/speedometer-fill.svg new file mode 100644 index 0000000..e4a02ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/speedometer-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sphere-fill.svg b/phosphor_orig/SVGs Flat/fill/sphere-fill.svg new file mode 100644 index 0000000..eb3dede --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sphere-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/spinner-ball-fill.svg b/phosphor_orig/SVGs Flat/fill/spinner-ball-fill.svg new file mode 100644 index 0000000..d6a2785 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/spinner-ball-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/spinner-fill.svg b/phosphor_orig/SVGs Flat/fill/spinner-fill.svg new file mode 100644 index 0000000..9a41667 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/spinner-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/spinner-gap-fill.svg b/phosphor_orig/SVGs Flat/fill/spinner-gap-fill.svg new file mode 100644 index 0000000..7ca5934 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/spinner-gap-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/spiral-fill.svg b/phosphor_orig/SVGs Flat/fill/spiral-fill.svg new file mode 100644 index 0000000..c930beb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/spiral-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/split-horizontal-fill.svg b/phosphor_orig/SVGs Flat/fill/split-horizontal-fill.svg new file mode 100644 index 0000000..40e9fb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/split-horizontal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/split-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/split-vertical-fill.svg new file mode 100644 index 0000000..8bee43a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/split-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/spotify-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/spotify-logo-fill.svg new file mode 100644 index 0000000..f4f1df0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/spotify-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/spray-bottle-fill.svg b/phosphor_orig/SVGs Flat/fill/spray-bottle-fill.svg new file mode 100644 index 0000000..00f70d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/spray-bottle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/square-fill.svg b/phosphor_orig/SVGs Flat/fill/square-fill.svg new file mode 100644 index 0000000..bb060aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/square-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/square-half-bottom-fill.svg b/phosphor_orig/SVGs Flat/fill/square-half-bottom-fill.svg new file mode 100644 index 0000000..aa12ac7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/square-half-bottom-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/square-half-fill.svg b/phosphor_orig/SVGs Flat/fill/square-half-fill.svg new file mode 100644 index 0000000..e77f677 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/square-half-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/square-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/square-logo-fill.svg new file mode 100644 index 0000000..e00f80c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/square-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/square-split-horizontal-fill.svg b/phosphor_orig/SVGs Flat/fill/square-split-horizontal-fill.svg new file mode 100644 index 0000000..efbffd4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/square-split-horizontal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/square-split-vertical-fill.svg b/phosphor_orig/SVGs Flat/fill/square-split-vertical-fill.svg new file mode 100644 index 0000000..70105b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/square-split-vertical-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/squares-four-fill.svg b/phosphor_orig/SVGs Flat/fill/squares-four-fill.svg new file mode 100644 index 0000000..57eef76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/squares-four-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/stack-fill.svg b/phosphor_orig/SVGs Flat/fill/stack-fill.svg new file mode 100644 index 0000000..d7044dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/stack-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/stack-minus-fill.svg b/phosphor_orig/SVGs Flat/fill/stack-minus-fill.svg new file mode 100644 index 0000000..78991b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/stack-minus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/stack-overflow-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/stack-overflow-logo-fill.svg new file mode 100644 index 0000000..c25cbda --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/stack-overflow-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/stack-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/stack-plus-fill.svg new file mode 100644 index 0000000..1020091 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/stack-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/stack-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/stack-simple-fill.svg new file mode 100644 index 0000000..4a0caab --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/stack-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/stairs-fill.svg b/phosphor_orig/SVGs Flat/fill/stairs-fill.svg new file mode 100644 index 0000000..6cf5961 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/stairs-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/stamp-fill.svg b/phosphor_orig/SVGs Flat/fill/stamp-fill.svg new file mode 100644 index 0000000..bcb5f92 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/stamp-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/standard-definition-fill.svg b/phosphor_orig/SVGs Flat/fill/standard-definition-fill.svg new file mode 100644 index 0000000..b02d1e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/standard-definition-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/star-and-crescent-fill.svg b/phosphor_orig/SVGs Flat/fill/star-and-crescent-fill.svg new file mode 100644 index 0000000..4a8a293 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/star-and-crescent-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/star-fill.svg b/phosphor_orig/SVGs Flat/fill/star-fill.svg new file mode 100644 index 0000000..50c668b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/star-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/star-four-fill.svg b/phosphor_orig/SVGs Flat/fill/star-four-fill.svg new file mode 100644 index 0000000..c17b164 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/star-four-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/star-half-fill.svg b/phosphor_orig/SVGs Flat/fill/star-half-fill.svg new file mode 100644 index 0000000..b4484c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/star-half-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/star-of-david-fill.svg b/phosphor_orig/SVGs Flat/fill/star-of-david-fill.svg new file mode 100644 index 0000000..d28b071 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/star-of-david-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/steam-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/steam-logo-fill.svg new file mode 100644 index 0000000..6febd3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/steam-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/steering-wheel-fill.svg b/phosphor_orig/SVGs Flat/fill/steering-wheel-fill.svg new file mode 100644 index 0000000..40ff580 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/steering-wheel-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/steps-fill.svg b/phosphor_orig/SVGs Flat/fill/steps-fill.svg new file mode 100644 index 0000000..d63316c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/steps-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/stethoscope-fill.svg b/phosphor_orig/SVGs Flat/fill/stethoscope-fill.svg new file mode 100644 index 0000000..7a20465 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/stethoscope-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sticker-fill.svg b/phosphor_orig/SVGs Flat/fill/sticker-fill.svg new file mode 100644 index 0000000..31b2715 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sticker-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/stool-fill.svg b/phosphor_orig/SVGs Flat/fill/stool-fill.svg new file mode 100644 index 0000000..b17546e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/stool-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/stop-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/stop-circle-fill.svg new file mode 100644 index 0000000..ce5425e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/stop-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/stop-fill.svg b/phosphor_orig/SVGs Flat/fill/stop-fill.svg new file mode 100644 index 0000000..c62031d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/stop-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/storefront-fill.svg b/phosphor_orig/SVGs Flat/fill/storefront-fill.svg new file mode 100644 index 0000000..6abaf5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/storefront-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/strategy-fill.svg b/phosphor_orig/SVGs Flat/fill/strategy-fill.svg new file mode 100644 index 0000000..606112b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/strategy-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/stripe-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/stripe-logo-fill.svg new file mode 100644 index 0000000..dc8c6df --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/stripe-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/student-fill.svg b/phosphor_orig/SVGs Flat/fill/student-fill.svg new file mode 100644 index 0000000..5b22251 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/student-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/subset-of-fill.svg b/phosphor_orig/SVGs Flat/fill/subset-of-fill.svg new file mode 100644 index 0000000..4c0071b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/subset-of-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/subset-proper-of-fill.svg b/phosphor_orig/SVGs Flat/fill/subset-proper-of-fill.svg new file mode 100644 index 0000000..f4eb130 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/subset-proper-of-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/subtitles-fill.svg b/phosphor_orig/SVGs Flat/fill/subtitles-fill.svg new file mode 100644 index 0000000..1456bdb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/subtitles-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/subtitles-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/subtitles-slash-fill.svg new file mode 100644 index 0000000..0ac5ebc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/subtitles-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/subtract-fill.svg b/phosphor_orig/SVGs Flat/fill/subtract-fill.svg new file mode 100644 index 0000000..33dd805 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/subtract-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/subtract-square-fill.svg b/phosphor_orig/SVGs Flat/fill/subtract-square-fill.svg new file mode 100644 index 0000000..96f7e92 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/subtract-square-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/subway-fill.svg b/phosphor_orig/SVGs Flat/fill/subway-fill.svg new file mode 100644 index 0000000..a9483e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/subway-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/suitcase-fill.svg b/phosphor_orig/SVGs Flat/fill/suitcase-fill.svg new file mode 100644 index 0000000..5bacaf8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/suitcase-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/suitcase-rolling-fill.svg b/phosphor_orig/SVGs Flat/fill/suitcase-rolling-fill.svg new file mode 100644 index 0000000..25947e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/suitcase-rolling-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/suitcase-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/suitcase-simple-fill.svg new file mode 100644 index 0000000..ea04bf0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/suitcase-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sun-dim-fill.svg b/phosphor_orig/SVGs Flat/fill/sun-dim-fill.svg new file mode 100644 index 0000000..6b109a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sun-dim-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sun-fill.svg b/phosphor_orig/SVGs Flat/fill/sun-fill.svg new file mode 100644 index 0000000..3488ecf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sun-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sun-horizon-fill.svg b/phosphor_orig/SVGs Flat/fill/sun-horizon-fill.svg new file mode 100644 index 0000000..f1fe184 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sun-horizon-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sunglasses-fill.svg b/phosphor_orig/SVGs Flat/fill/sunglasses-fill.svg new file mode 100644 index 0000000..53240b0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sunglasses-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/superset-of-fill.svg b/phosphor_orig/SVGs Flat/fill/superset-of-fill.svg new file mode 100644 index 0000000..a0335d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/superset-of-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/superset-proper-of-fill.svg b/phosphor_orig/SVGs Flat/fill/superset-proper-of-fill.svg new file mode 100644 index 0000000..a0c51a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/superset-proper-of-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/swap-fill.svg b/phosphor_orig/SVGs Flat/fill/swap-fill.svg new file mode 100644 index 0000000..469cd3d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/swap-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/swatches-fill.svg b/phosphor_orig/SVGs Flat/fill/swatches-fill.svg new file mode 100644 index 0000000..5896007 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/swatches-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/swimming-pool-fill.svg b/phosphor_orig/SVGs Flat/fill/swimming-pool-fill.svg new file mode 100644 index 0000000..0b50658 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/swimming-pool-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/sword-fill.svg b/phosphor_orig/SVGs Flat/fill/sword-fill.svg new file mode 100644 index 0000000..fbc8495 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/sword-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/synagogue-fill.svg b/phosphor_orig/SVGs Flat/fill/synagogue-fill.svg new file mode 100644 index 0000000..7f8efcc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/synagogue-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/syringe-fill.svg b/phosphor_orig/SVGs Flat/fill/syringe-fill.svg new file mode 100644 index 0000000..7e1cf4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/syringe-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/t-shirt-fill.svg b/phosphor_orig/SVGs Flat/fill/t-shirt-fill.svg new file mode 100644 index 0000000..1bd1f39 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/t-shirt-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/table-fill.svg b/phosphor_orig/SVGs Flat/fill/table-fill.svg new file mode 100644 index 0000000..863ac76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/table-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tabs-fill.svg b/phosphor_orig/SVGs Flat/fill/tabs-fill.svg new file mode 100644 index 0000000..89eff8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tabs-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tag-chevron-fill.svg b/phosphor_orig/SVGs Flat/fill/tag-chevron-fill.svg new file mode 100644 index 0000000..40e53a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tag-chevron-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tag-fill.svg b/phosphor_orig/SVGs Flat/fill/tag-fill.svg new file mode 100644 index 0000000..a2416c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tag-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tag-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/tag-simple-fill.svg new file mode 100644 index 0000000..e6385e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tag-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/target-fill.svg b/phosphor_orig/SVGs Flat/fill/target-fill.svg new file mode 100644 index 0000000..bcfac95 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/target-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/taxi-fill.svg b/phosphor_orig/SVGs Flat/fill/taxi-fill.svg new file mode 100644 index 0000000..3a1a041 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/taxi-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tea-bag-fill.svg b/phosphor_orig/SVGs Flat/fill/tea-bag-fill.svg new file mode 100644 index 0000000..6e48ed7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tea-bag-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/telegram-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/telegram-logo-fill.svg new file mode 100644 index 0000000..25b7fab --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/telegram-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/television-fill.svg b/phosphor_orig/SVGs Flat/fill/television-fill.svg new file mode 100644 index 0000000..2ea7928 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/television-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/television-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/television-simple-fill.svg new file mode 100644 index 0000000..3091499 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/television-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tennis-ball-fill.svg b/phosphor_orig/SVGs Flat/fill/tennis-ball-fill.svg new file mode 100644 index 0000000..525610b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tennis-ball-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tent-fill.svg b/phosphor_orig/SVGs Flat/fill/tent-fill.svg new file mode 100644 index 0000000..038dd9a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tent-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/terminal-fill.svg b/phosphor_orig/SVGs Flat/fill/terminal-fill.svg new file mode 100644 index 0000000..e4afe1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/terminal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/terminal-window-fill.svg b/phosphor_orig/SVGs Flat/fill/terminal-window-fill.svg new file mode 100644 index 0000000..69cebef --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/terminal-window-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/test-tube-fill.svg b/phosphor_orig/SVGs Flat/fill/test-tube-fill.svg new file mode 100644 index 0000000..6b3e196 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/test-tube-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-a-underline-fill.svg b/phosphor_orig/SVGs Flat/fill/text-a-underline-fill.svg new file mode 100644 index 0000000..c709f84 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-a-underline-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-aa-fill.svg b/phosphor_orig/SVGs Flat/fill/text-aa-fill.svg new file mode 100644 index 0000000..59e4173 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-aa-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-align-center-fill.svg b/phosphor_orig/SVGs Flat/fill/text-align-center-fill.svg new file mode 100644 index 0000000..962b3f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-align-center-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-align-justify-fill.svg b/phosphor_orig/SVGs Flat/fill/text-align-justify-fill.svg new file mode 100644 index 0000000..9887214 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-align-justify-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-align-left-fill.svg b/phosphor_orig/SVGs Flat/fill/text-align-left-fill.svg new file mode 100644 index 0000000..9ecc7cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-align-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-align-right-fill.svg b/phosphor_orig/SVGs Flat/fill/text-align-right-fill.svg new file mode 100644 index 0000000..c7c6c46 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-align-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-b-fill.svg b/phosphor_orig/SVGs Flat/fill/text-b-fill.svg new file mode 100644 index 0000000..7292d2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-b-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-columns-fill.svg b/phosphor_orig/SVGs Flat/fill/text-columns-fill.svg new file mode 100644 index 0000000..a10c5bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-columns-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-h-fill.svg b/phosphor_orig/SVGs Flat/fill/text-h-fill.svg new file mode 100644 index 0000000..0992b94 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-h-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-h-five-fill.svg b/phosphor_orig/SVGs Flat/fill/text-h-five-fill.svg new file mode 100644 index 0000000..0912ec9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-h-five-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-h-four-fill.svg b/phosphor_orig/SVGs Flat/fill/text-h-four-fill.svg new file mode 100644 index 0000000..dc693fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-h-four-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-h-one-fill.svg b/phosphor_orig/SVGs Flat/fill/text-h-one-fill.svg new file mode 100644 index 0000000..c42903c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-h-one-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-h-six-fill.svg b/phosphor_orig/SVGs Flat/fill/text-h-six-fill.svg new file mode 100644 index 0000000..758cebc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-h-six-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-h-three-fill.svg b/phosphor_orig/SVGs Flat/fill/text-h-three-fill.svg new file mode 100644 index 0000000..81d8477 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-h-three-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-h-two-fill.svg b/phosphor_orig/SVGs Flat/fill/text-h-two-fill.svg new file mode 100644 index 0000000..98fe150 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-h-two-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-indent-fill.svg b/phosphor_orig/SVGs Flat/fill/text-indent-fill.svg new file mode 100644 index 0000000..e8ca2d6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-indent-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-italic-fill.svg b/phosphor_orig/SVGs Flat/fill/text-italic-fill.svg new file mode 100644 index 0000000..3964738 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-italic-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-outdent-fill.svg b/phosphor_orig/SVGs Flat/fill/text-outdent-fill.svg new file mode 100644 index 0000000..6e25ebd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-outdent-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-strikethrough-fill.svg b/phosphor_orig/SVGs Flat/fill/text-strikethrough-fill.svg new file mode 100644 index 0000000..24121d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-strikethrough-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-subscript-fill.svg b/phosphor_orig/SVGs Flat/fill/text-subscript-fill.svg new file mode 100644 index 0000000..9266d23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-subscript-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-superscript-fill.svg b/phosphor_orig/SVGs Flat/fill/text-superscript-fill.svg new file mode 100644 index 0000000..ab7a598 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-superscript-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-t-fill.svg b/phosphor_orig/SVGs Flat/fill/text-t-fill.svg new file mode 100644 index 0000000..41a7cb5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-t-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-t-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/text-t-slash-fill.svg new file mode 100644 index 0000000..c636e41 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-t-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/text-underline-fill.svg b/phosphor_orig/SVGs Flat/fill/text-underline-fill.svg new file mode 100644 index 0000000..1cc939c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/text-underline-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/textbox-fill.svg b/phosphor_orig/SVGs Flat/fill/textbox-fill.svg new file mode 100644 index 0000000..7f659b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/textbox-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/thermometer-cold-fill.svg b/phosphor_orig/SVGs Flat/fill/thermometer-cold-fill.svg new file mode 100644 index 0000000..d48822a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/thermometer-cold-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/thermometer-fill.svg b/phosphor_orig/SVGs Flat/fill/thermometer-fill.svg new file mode 100644 index 0000000..285e51b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/thermometer-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/thermometer-hot-fill.svg b/phosphor_orig/SVGs Flat/fill/thermometer-hot-fill.svg new file mode 100644 index 0000000..9e2fa00 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/thermometer-hot-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/thermometer-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/thermometer-simple-fill.svg new file mode 100644 index 0000000..3e14ed9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/thermometer-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/threads-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/threads-logo-fill.svg new file mode 100644 index 0000000..26321b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/threads-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/three-d-fill.svg b/phosphor_orig/SVGs Flat/fill/three-d-fill.svg new file mode 100644 index 0000000..81ec1ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/three-d-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/thumbs-down-fill.svg b/phosphor_orig/SVGs Flat/fill/thumbs-down-fill.svg new file mode 100644 index 0000000..ecceefb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/thumbs-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/thumbs-up-fill.svg b/phosphor_orig/SVGs Flat/fill/thumbs-up-fill.svg new file mode 100644 index 0000000..2186cf8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/thumbs-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/ticket-fill.svg b/phosphor_orig/SVGs Flat/fill/ticket-fill.svg new file mode 100644 index 0000000..c805e30 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/ticket-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tidal-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/tidal-logo-fill.svg new file mode 100644 index 0000000..8344d9c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tidal-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tiktok-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/tiktok-logo-fill.svg new file mode 100644 index 0000000..6964ab9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tiktok-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tilde-fill.svg b/phosphor_orig/SVGs Flat/fill/tilde-fill.svg new file mode 100644 index 0000000..3eb376a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tilde-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/timer-fill.svg b/phosphor_orig/SVGs Flat/fill/timer-fill.svg new file mode 100644 index 0000000..ac63c0c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/timer-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tip-jar-fill.svg b/phosphor_orig/SVGs Flat/fill/tip-jar-fill.svg new file mode 100644 index 0000000..8059c2c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tip-jar-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tipi-fill.svg b/phosphor_orig/SVGs Flat/fill/tipi-fill.svg new file mode 100644 index 0000000..3d42152 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tipi-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tire-fill.svg b/phosphor_orig/SVGs Flat/fill/tire-fill.svg new file mode 100644 index 0000000..69f2737 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tire-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/toggle-left-fill.svg b/phosphor_orig/SVGs Flat/fill/toggle-left-fill.svg new file mode 100644 index 0000000..3b59b39 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/toggle-left-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/toggle-right-fill.svg b/phosphor_orig/SVGs Flat/fill/toggle-right-fill.svg new file mode 100644 index 0000000..6ec424c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/toggle-right-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/toilet-fill.svg b/phosphor_orig/SVGs Flat/fill/toilet-fill.svg new file mode 100644 index 0000000..533d872 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/toilet-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/toilet-paper-fill.svg b/phosphor_orig/SVGs Flat/fill/toilet-paper-fill.svg new file mode 100644 index 0000000..3af3b82 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/toilet-paper-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/toolbox-fill.svg b/phosphor_orig/SVGs Flat/fill/toolbox-fill.svg new file mode 100644 index 0000000..2319d59 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/toolbox-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tooth-fill.svg b/phosphor_orig/SVGs Flat/fill/tooth-fill.svg new file mode 100644 index 0000000..1059edc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tooth-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tornado-fill.svg b/phosphor_orig/SVGs Flat/fill/tornado-fill.svg new file mode 100644 index 0000000..bce774a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tornado-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tote-fill.svg b/phosphor_orig/SVGs Flat/fill/tote-fill.svg new file mode 100644 index 0000000..8327309 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tote-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tote-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/tote-simple-fill.svg new file mode 100644 index 0000000..35b8098 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tote-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/towel-fill.svg b/phosphor_orig/SVGs Flat/fill/towel-fill.svg new file mode 100644 index 0000000..93a0826 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/towel-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tractor-fill.svg b/phosphor_orig/SVGs Flat/fill/tractor-fill.svg new file mode 100644 index 0000000..c3eb5f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tractor-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/trademark-fill.svg b/phosphor_orig/SVGs Flat/fill/trademark-fill.svg new file mode 100644 index 0000000..68c150e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/trademark-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/trademark-registered-fill.svg b/phosphor_orig/SVGs Flat/fill/trademark-registered-fill.svg new file mode 100644 index 0000000..1eb6938 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/trademark-registered-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/traffic-cone-fill.svg b/phosphor_orig/SVGs Flat/fill/traffic-cone-fill.svg new file mode 100644 index 0000000..dd056ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/traffic-cone-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/traffic-sign-fill.svg b/phosphor_orig/SVGs Flat/fill/traffic-sign-fill.svg new file mode 100644 index 0000000..78dbbee --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/traffic-sign-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/traffic-signal-fill.svg b/phosphor_orig/SVGs Flat/fill/traffic-signal-fill.svg new file mode 100644 index 0000000..3f87bdd --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/traffic-signal-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/train-fill.svg b/phosphor_orig/SVGs Flat/fill/train-fill.svg new file mode 100644 index 0000000..6ca85fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/train-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/train-regional-fill.svg b/phosphor_orig/SVGs Flat/fill/train-regional-fill.svg new file mode 100644 index 0000000..9332b74 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/train-regional-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/train-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/train-simple-fill.svg new file mode 100644 index 0000000..34ede87 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/train-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tram-fill.svg b/phosphor_orig/SVGs Flat/fill/tram-fill.svg new file mode 100644 index 0000000..1719372 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tram-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/translate-fill.svg b/phosphor_orig/SVGs Flat/fill/translate-fill.svg new file mode 100644 index 0000000..56cc302 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/translate-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/trash-fill.svg b/phosphor_orig/SVGs Flat/fill/trash-fill.svg new file mode 100644 index 0000000..37381ce --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/trash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/trash-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/trash-simple-fill.svg new file mode 100644 index 0000000..177ec7e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/trash-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tray-arrow-down-fill.svg b/phosphor_orig/SVGs Flat/fill/tray-arrow-down-fill.svg new file mode 100644 index 0000000..5496ddf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tray-arrow-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tray-arrow-up-fill.svg b/phosphor_orig/SVGs Flat/fill/tray-arrow-up-fill.svg new file mode 100644 index 0000000..58fb8f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tray-arrow-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tray-fill.svg b/phosphor_orig/SVGs Flat/fill/tray-fill.svg new file mode 100644 index 0000000..ca942aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tray-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/treasure-chest-fill.svg b/phosphor_orig/SVGs Flat/fill/treasure-chest-fill.svg new file mode 100644 index 0000000..2ffb911 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/treasure-chest-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tree-evergreen-fill.svg b/phosphor_orig/SVGs Flat/fill/tree-evergreen-fill.svg new file mode 100644 index 0000000..ae87e01 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tree-evergreen-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tree-fill.svg b/phosphor_orig/SVGs Flat/fill/tree-fill.svg new file mode 100644 index 0000000..199a82f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tree-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tree-palm-fill.svg b/phosphor_orig/SVGs Flat/fill/tree-palm-fill.svg new file mode 100644 index 0000000..0273d3d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tree-palm-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tree-structure-fill.svg b/phosphor_orig/SVGs Flat/fill/tree-structure-fill.svg new file mode 100644 index 0000000..4514232 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tree-structure-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tree-view-fill.svg b/phosphor_orig/SVGs Flat/fill/tree-view-fill.svg new file mode 100644 index 0000000..1c1808d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tree-view-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/trend-down-fill.svg b/phosphor_orig/SVGs Flat/fill/trend-down-fill.svg new file mode 100644 index 0000000..142175e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/trend-down-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/trend-up-fill.svg b/phosphor_orig/SVGs Flat/fill/trend-up-fill.svg new file mode 100644 index 0000000..f9be0b0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/trend-up-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/triangle-dashed-fill.svg b/phosphor_orig/SVGs Flat/fill/triangle-dashed-fill.svg new file mode 100644 index 0000000..624e684 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/triangle-dashed-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/triangle-fill.svg b/phosphor_orig/SVGs Flat/fill/triangle-fill.svg new file mode 100644 index 0000000..ddb104e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/triangle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/trolley-fill.svg b/phosphor_orig/SVGs Flat/fill/trolley-fill.svg new file mode 100644 index 0000000..a11650f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/trolley-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/trolley-suitcase-fill.svg b/phosphor_orig/SVGs Flat/fill/trolley-suitcase-fill.svg new file mode 100644 index 0000000..a01564b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/trolley-suitcase-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/trophy-fill.svg b/phosphor_orig/SVGs Flat/fill/trophy-fill.svg new file mode 100644 index 0000000..13ab2e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/trophy-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/truck-fill.svg b/phosphor_orig/SVGs Flat/fill/truck-fill.svg new file mode 100644 index 0000000..33bb3a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/truck-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/truck-trailer-fill.svg b/phosphor_orig/SVGs Flat/fill/truck-trailer-fill.svg new file mode 100644 index 0000000..af2ab5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/truck-trailer-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/tumblr-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/tumblr-logo-fill.svg new file mode 100644 index 0000000..994ccd0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/tumblr-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/twitch-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/twitch-logo-fill.svg new file mode 100644 index 0000000..d00d429 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/twitch-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/twitter-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/twitter-logo-fill.svg new file mode 100644 index 0000000..d2530b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/twitter-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/umbrella-fill.svg b/phosphor_orig/SVGs Flat/fill/umbrella-fill.svg new file mode 100644 index 0000000..45d7bb9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/umbrella-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/umbrella-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/umbrella-simple-fill.svg new file mode 100644 index 0000000..ab1cac0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/umbrella-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/union-fill.svg b/phosphor_orig/SVGs Flat/fill/union-fill.svg new file mode 100644 index 0000000..f768a06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/union-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/unite-fill.svg b/phosphor_orig/SVGs Flat/fill/unite-fill.svg new file mode 100644 index 0000000..7fdb6b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/unite-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/unite-square-fill.svg b/phosphor_orig/SVGs Flat/fill/unite-square-fill.svg new file mode 100644 index 0000000..404f865 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/unite-square-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/upload-fill.svg b/phosphor_orig/SVGs Flat/fill/upload-fill.svg new file mode 100644 index 0000000..f03abc7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/upload-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/upload-simple-fill.svg b/phosphor_orig/SVGs Flat/fill/upload-simple-fill.svg new file mode 100644 index 0000000..f3cbd25 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/upload-simple-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/usb-fill.svg b/phosphor_orig/SVGs Flat/fill/usb-fill.svg new file mode 100644 index 0000000..92c409f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/usb-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-check-fill.svg b/phosphor_orig/SVGs Flat/fill/user-check-fill.svg new file mode 100644 index 0000000..96c1afe --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-check-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-circle-check-fill.svg b/phosphor_orig/SVGs Flat/fill/user-circle-check-fill.svg new file mode 100644 index 0000000..ab867ff --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-circle-check-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-circle-dashed-fill.svg b/phosphor_orig/SVGs Flat/fill/user-circle-dashed-fill.svg new file mode 100644 index 0000000..1f0c6ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-circle-dashed-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/user-circle-fill.svg new file mode 100644 index 0000000..b7b03c2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-circle-gear-fill.svg b/phosphor_orig/SVGs Flat/fill/user-circle-gear-fill.svg new file mode 100644 index 0000000..1fda4d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-circle-gear-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-circle-minus-fill.svg b/phosphor_orig/SVGs Flat/fill/user-circle-minus-fill.svg new file mode 100644 index 0000000..e0f900f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-circle-minus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-circle-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/user-circle-plus-fill.svg new file mode 100644 index 0000000..a501d39 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-circle-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-fill.svg b/phosphor_orig/SVGs Flat/fill/user-fill.svg new file mode 100644 index 0000000..a1ed3d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-focus-fill.svg b/phosphor_orig/SVGs Flat/fill/user-focus-fill.svg new file mode 100644 index 0000000..97eaa1d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-focus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-gear-fill.svg b/phosphor_orig/SVGs Flat/fill/user-gear-fill.svg new file mode 100644 index 0000000..9812231 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-gear-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-list-fill.svg b/phosphor_orig/SVGs Flat/fill/user-list-fill.svg new file mode 100644 index 0000000..fbdbae9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-list-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-minus-fill.svg b/phosphor_orig/SVGs Flat/fill/user-minus-fill.svg new file mode 100644 index 0000000..331cdb6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-minus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-plus-fill.svg b/phosphor_orig/SVGs Flat/fill/user-plus-fill.svg new file mode 100644 index 0000000..98e8483 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-plus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-rectangle-fill.svg b/phosphor_orig/SVGs Flat/fill/user-rectangle-fill.svg new file mode 100644 index 0000000..f17bf59 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-rectangle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-sound-fill.svg b/phosphor_orig/SVGs Flat/fill/user-sound-fill.svg new file mode 100644 index 0000000..14bee4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-sound-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-square-fill.svg b/phosphor_orig/SVGs Flat/fill/user-square-fill.svg new file mode 100644 index 0000000..f1be5bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-square-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/user-switch-fill.svg b/phosphor_orig/SVGs Flat/fill/user-switch-fill.svg new file mode 100644 index 0000000..2776744 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/user-switch-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/users-fill.svg b/phosphor_orig/SVGs Flat/fill/users-fill.svg new file mode 100644 index 0000000..8a7f782 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/users-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/users-four-fill.svg b/phosphor_orig/SVGs Flat/fill/users-four-fill.svg new file mode 100644 index 0000000..1e27d22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/users-four-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/users-three-fill.svg b/phosphor_orig/SVGs Flat/fill/users-three-fill.svg new file mode 100644 index 0000000..7ac2604 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/users-three-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/van-fill.svg b/phosphor_orig/SVGs Flat/fill/van-fill.svg new file mode 100644 index 0000000..fbcfe16 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/van-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/vault-fill.svg b/phosphor_orig/SVGs Flat/fill/vault-fill.svg new file mode 100644 index 0000000..34a915a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/vault-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/vector-three-fill.svg b/phosphor_orig/SVGs Flat/fill/vector-three-fill.svg new file mode 100644 index 0000000..ff5f935 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/vector-three-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/vector-two-fill.svg b/phosphor_orig/SVGs Flat/fill/vector-two-fill.svg new file mode 100644 index 0000000..234dbc7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/vector-two-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/vibrate-fill.svg b/phosphor_orig/SVGs Flat/fill/vibrate-fill.svg new file mode 100644 index 0000000..2d8716f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/vibrate-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/video-camera-fill.svg b/phosphor_orig/SVGs Flat/fill/video-camera-fill.svg new file mode 100644 index 0000000..cff1e99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/video-camera-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/video-camera-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/video-camera-slash-fill.svg new file mode 100644 index 0000000..d006e4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/video-camera-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/video-conference-fill.svg b/phosphor_orig/SVGs Flat/fill/video-conference-fill.svg new file mode 100644 index 0000000..72f7463 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/video-conference-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/video-fill.svg b/phosphor_orig/SVGs Flat/fill/video-fill.svg new file mode 100644 index 0000000..e122095 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/video-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/vignette-fill.svg b/phosphor_orig/SVGs Flat/fill/vignette-fill.svg new file mode 100644 index 0000000..e835039 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/vignette-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/vinyl-record-fill.svg b/phosphor_orig/SVGs Flat/fill/vinyl-record-fill.svg new file mode 100644 index 0000000..e98b778 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/vinyl-record-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/virtual-reality-fill.svg b/phosphor_orig/SVGs Flat/fill/virtual-reality-fill.svg new file mode 100644 index 0000000..beb5980 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/virtual-reality-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/virus-fill.svg b/phosphor_orig/SVGs Flat/fill/virus-fill.svg new file mode 100644 index 0000000..44af0dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/virus-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/visor-fill.svg b/phosphor_orig/SVGs Flat/fill/visor-fill.svg new file mode 100644 index 0000000..651aaa6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/visor-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/voicemail-fill.svg b/phosphor_orig/SVGs Flat/fill/voicemail-fill.svg new file mode 100644 index 0000000..394fffc --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/voicemail-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/volleyball-fill.svg b/phosphor_orig/SVGs Flat/fill/volleyball-fill.svg new file mode 100644 index 0000000..d61051d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/volleyball-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wall-fill.svg b/phosphor_orig/SVGs Flat/fill/wall-fill.svg new file mode 100644 index 0000000..73164f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wall-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wallet-fill.svg b/phosphor_orig/SVGs Flat/fill/wallet-fill.svg new file mode 100644 index 0000000..873f160 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wallet-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/warehouse-fill.svg b/phosphor_orig/SVGs Flat/fill/warehouse-fill.svg new file mode 100644 index 0000000..c50f813 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/warehouse-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/warning-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/warning-circle-fill.svg new file mode 100644 index 0000000..3ff303b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/warning-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/warning-diamond-fill.svg b/phosphor_orig/SVGs Flat/fill/warning-diamond-fill.svg new file mode 100644 index 0000000..994531e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/warning-diamond-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/warning-fill.svg b/phosphor_orig/SVGs Flat/fill/warning-fill.svg new file mode 100644 index 0000000..f8ada0a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/warning-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/warning-octagon-fill.svg b/phosphor_orig/SVGs Flat/fill/warning-octagon-fill.svg new file mode 100644 index 0000000..b93dce1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/warning-octagon-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/washing-machine-fill.svg b/phosphor_orig/SVGs Flat/fill/washing-machine-fill.svg new file mode 100644 index 0000000..c581352 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/washing-machine-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/watch-fill.svg b/phosphor_orig/SVGs Flat/fill/watch-fill.svg new file mode 100644 index 0000000..724cb75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/watch-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wave-sawtooth-fill.svg b/phosphor_orig/SVGs Flat/fill/wave-sawtooth-fill.svg new file mode 100644 index 0000000..f310d9a --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wave-sawtooth-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wave-sine-fill.svg b/phosphor_orig/SVGs Flat/fill/wave-sine-fill.svg new file mode 100644 index 0000000..1feb0a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wave-sine-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wave-square-fill.svg b/phosphor_orig/SVGs Flat/fill/wave-square-fill.svg new file mode 100644 index 0000000..fd57970 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wave-square-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wave-triangle-fill.svg b/phosphor_orig/SVGs Flat/fill/wave-triangle-fill.svg new file mode 100644 index 0000000..2e63a3f --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wave-triangle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/waveform-fill.svg b/phosphor_orig/SVGs Flat/fill/waveform-fill.svg new file mode 100644 index 0000000..7f6d1fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/waveform-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/waveform-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/waveform-slash-fill.svg new file mode 100644 index 0000000..d01a3d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/waveform-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/waves-fill.svg b/phosphor_orig/SVGs Flat/fill/waves-fill.svg new file mode 100644 index 0000000..6360b76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/waves-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/webcam-fill.svg b/phosphor_orig/SVGs Flat/fill/webcam-fill.svg new file mode 100644 index 0000000..5c88685 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/webcam-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/webcam-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/webcam-slash-fill.svg new file mode 100644 index 0000000..0be7496 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/webcam-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/webhooks-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/webhooks-logo-fill.svg new file mode 100644 index 0000000..532ba60 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/webhooks-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wechat-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/wechat-logo-fill.svg new file mode 100644 index 0000000..31df2ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wechat-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/whatsapp-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/whatsapp-logo-fill.svg new file mode 100644 index 0000000..c625482 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/whatsapp-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wheelchair-fill.svg b/phosphor_orig/SVGs Flat/fill/wheelchair-fill.svg new file mode 100644 index 0000000..0207c2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wheelchair-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wheelchair-motion-fill.svg b/phosphor_orig/SVGs Flat/fill/wheelchair-motion-fill.svg new file mode 100644 index 0000000..80af89d --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wheelchair-motion-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wifi-high-fill.svg b/phosphor_orig/SVGs Flat/fill/wifi-high-fill.svg new file mode 100644 index 0000000..509bb92 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wifi-high-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wifi-low-fill.svg b/phosphor_orig/SVGs Flat/fill/wifi-low-fill.svg new file mode 100644 index 0000000..c1f7ba1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wifi-low-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wifi-medium-fill.svg b/phosphor_orig/SVGs Flat/fill/wifi-medium-fill.svg new file mode 100644 index 0000000..b2f8d6e --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wifi-medium-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wifi-none-fill.svg b/phosphor_orig/SVGs Flat/fill/wifi-none-fill.svg new file mode 100644 index 0000000..787c9e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wifi-none-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wifi-slash-fill.svg b/phosphor_orig/SVGs Flat/fill/wifi-slash-fill.svg new file mode 100644 index 0000000..89b8143 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wifi-slash-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wifi-x-fill.svg b/phosphor_orig/SVGs Flat/fill/wifi-x-fill.svg new file mode 100644 index 0000000..859fab8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wifi-x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wind-fill.svg b/phosphor_orig/SVGs Flat/fill/wind-fill.svg new file mode 100644 index 0000000..e46fa87 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wind-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/windmill-fill.svg b/phosphor_orig/SVGs Flat/fill/windmill-fill.svg new file mode 100644 index 0000000..651944b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/windmill-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/windows-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/windows-logo-fill.svg new file mode 100644 index 0000000..dbf3089 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/windows-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wine-fill.svg b/phosphor_orig/SVGs Flat/fill/wine-fill.svg new file mode 100644 index 0000000..acf72fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wine-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/wrench-fill.svg b/phosphor_orig/SVGs Flat/fill/wrench-fill.svg new file mode 100644 index 0000000..ba3338c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/wrench-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/x-circle-fill.svg b/phosphor_orig/SVGs Flat/fill/x-circle-fill.svg new file mode 100644 index 0000000..7952faf --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/x-circle-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/x-fill.svg b/phosphor_orig/SVGs Flat/fill/x-fill.svg new file mode 100644 index 0000000..5619a6b --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/x-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/x-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/x-logo-fill.svg new file mode 100644 index 0000000..03be99c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/x-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/x-square-fill.svg b/phosphor_orig/SVGs Flat/fill/x-square-fill.svg new file mode 100644 index 0000000..546f716 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/x-square-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/yarn-fill.svg b/phosphor_orig/SVGs Flat/fill/yarn-fill.svg new file mode 100644 index 0000000..73595ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/yarn-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/yin-yang-fill.svg b/phosphor_orig/SVGs Flat/fill/yin-yang-fill.svg new file mode 100644 index 0000000..38d0a3c --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/yin-yang-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/fill/youtube-logo-fill.svg b/phosphor_orig/SVGs Flat/fill/youtube-logo-fill.svg new file mode 100644 index 0000000..02afdd5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/fill/youtube-logo-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/acorn-light.svg b/phosphor_orig/SVGs Flat/light/acorn-light.svg new file mode 100644 index 0000000..2bac54d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/acorn-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/address-book-light.svg b/phosphor_orig/SVGs Flat/light/address-book-light.svg new file mode 100644 index 0000000..6517366 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/address-book-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/address-book-tabs-light.svg b/phosphor_orig/SVGs Flat/light/address-book-tabs-light.svg new file mode 100644 index 0000000..b00045c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/address-book-tabs-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/air-traffic-control-light.svg b/phosphor_orig/SVGs Flat/light/air-traffic-control-light.svg new file mode 100644 index 0000000..9a938c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/air-traffic-control-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/airplane-in-flight-light.svg b/phosphor_orig/SVGs Flat/light/airplane-in-flight-light.svg new file mode 100644 index 0000000..7f404bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/airplane-in-flight-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/airplane-landing-light.svg b/phosphor_orig/SVGs Flat/light/airplane-landing-light.svg new file mode 100644 index 0000000..6dd9c51 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/airplane-landing-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/airplane-light.svg b/phosphor_orig/SVGs Flat/light/airplane-light.svg new file mode 100644 index 0000000..2b184a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/airplane-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/airplane-takeoff-light.svg b/phosphor_orig/SVGs Flat/light/airplane-takeoff-light.svg new file mode 100644 index 0000000..c445430 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/airplane-takeoff-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/airplane-taxiing-light.svg b/phosphor_orig/SVGs Flat/light/airplane-taxiing-light.svg new file mode 100644 index 0000000..e2a6bb6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/airplane-taxiing-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/airplane-tilt-light.svg b/phosphor_orig/SVGs Flat/light/airplane-tilt-light.svg new file mode 100644 index 0000000..ad7aaf3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/airplane-tilt-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/airplay-light.svg b/phosphor_orig/SVGs Flat/light/airplay-light.svg new file mode 100644 index 0000000..4a4a961 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/airplay-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/alarm-light.svg b/phosphor_orig/SVGs Flat/light/alarm-light.svg new file mode 100644 index 0000000..25cf023 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/alarm-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/alien-light.svg b/phosphor_orig/SVGs Flat/light/alien-light.svg new file mode 100644 index 0000000..01810c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/alien-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/align-bottom-light.svg b/phosphor_orig/SVGs Flat/light/align-bottom-light.svg new file mode 100644 index 0000000..57dc2f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/align-bottom-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/align-bottom-simple-light.svg b/phosphor_orig/SVGs Flat/light/align-bottom-simple-light.svg new file mode 100644 index 0000000..3c35502 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/align-bottom-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/align-center-horizontal-light.svg b/phosphor_orig/SVGs Flat/light/align-center-horizontal-light.svg new file mode 100644 index 0000000..e2ab870 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/align-center-horizontal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/align-center-horizontal-simple-light.svg b/phosphor_orig/SVGs Flat/light/align-center-horizontal-simple-light.svg new file mode 100644 index 0000000..b7ddce9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/align-center-horizontal-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/align-center-vertical-light.svg b/phosphor_orig/SVGs Flat/light/align-center-vertical-light.svg new file mode 100644 index 0000000..01c2132 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/align-center-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/align-center-vertical-simple-light.svg b/phosphor_orig/SVGs Flat/light/align-center-vertical-simple-light.svg new file mode 100644 index 0000000..52d3098 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/align-center-vertical-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/align-left-light.svg b/phosphor_orig/SVGs Flat/light/align-left-light.svg new file mode 100644 index 0000000..18310cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/align-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/align-left-simple-light.svg b/phosphor_orig/SVGs Flat/light/align-left-simple-light.svg new file mode 100644 index 0000000..80b4446 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/align-left-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/align-right-light.svg b/phosphor_orig/SVGs Flat/light/align-right-light.svg new file mode 100644 index 0000000..b329068 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/align-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/align-right-simple-light.svg b/phosphor_orig/SVGs Flat/light/align-right-simple-light.svg new file mode 100644 index 0000000..6b3a9d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/align-right-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/align-top-light.svg b/phosphor_orig/SVGs Flat/light/align-top-light.svg new file mode 100644 index 0000000..a87ad52 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/align-top-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/align-top-simple-light.svg b/phosphor_orig/SVGs Flat/light/align-top-simple-light.svg new file mode 100644 index 0000000..fb9c9a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/align-top-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/amazon-logo-light.svg b/phosphor_orig/SVGs Flat/light/amazon-logo-light.svg new file mode 100644 index 0000000..ed9c09f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/amazon-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/ambulance-light.svg b/phosphor_orig/SVGs Flat/light/ambulance-light.svg new file mode 100644 index 0000000..134f237 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/ambulance-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/anchor-light.svg b/phosphor_orig/SVGs Flat/light/anchor-light.svg new file mode 100644 index 0000000..0f1fb8d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/anchor-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/anchor-simple-light.svg b/phosphor_orig/SVGs Flat/light/anchor-simple-light.svg new file mode 100644 index 0000000..2752c5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/anchor-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/android-logo-light.svg b/phosphor_orig/SVGs Flat/light/android-logo-light.svg new file mode 100644 index 0000000..95aad61 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/android-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/angle-light.svg b/phosphor_orig/SVGs Flat/light/angle-light.svg new file mode 100644 index 0000000..04af66a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/angle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/angular-logo-light.svg b/phosphor_orig/SVGs Flat/light/angular-logo-light.svg new file mode 100644 index 0000000..fa91ed9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/angular-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/aperture-light.svg b/phosphor_orig/SVGs Flat/light/aperture-light.svg new file mode 100644 index 0000000..1bbf488 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/aperture-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/app-store-logo-light.svg b/phosphor_orig/SVGs Flat/light/app-store-logo-light.svg new file mode 100644 index 0000000..7039630 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/app-store-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/app-window-light.svg b/phosphor_orig/SVGs Flat/light/app-window-light.svg new file mode 100644 index 0000000..db1bdd1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/app-window-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/apple-logo-light.svg b/phosphor_orig/SVGs Flat/light/apple-logo-light.svg new file mode 100644 index 0000000..0b6425e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/apple-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/apple-podcasts-logo-light.svg b/phosphor_orig/SVGs Flat/light/apple-podcasts-logo-light.svg new file mode 100644 index 0000000..20a4d00 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/apple-podcasts-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/approximate-equals-light.svg b/phosphor_orig/SVGs Flat/light/approximate-equals-light.svg new file mode 100644 index 0000000..016d483 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/approximate-equals-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/archive-light.svg b/phosphor_orig/SVGs Flat/light/archive-light.svg new file mode 100644 index 0000000..c5e237b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/archive-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/armchair-light.svg b/phosphor_orig/SVGs Flat/light/armchair-light.svg new file mode 100644 index 0000000..8380cb0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/armchair-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-arc-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-arc-left-light.svg new file mode 100644 index 0000000..8b1d359 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-arc-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-arc-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-arc-right-light.svg new file mode 100644 index 0000000..3207699 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-arc-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-bend-double-up-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-bend-double-up-left-light.svg new file mode 100644 index 0000000..f3ba784 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-bend-double-up-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-bend-double-up-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-bend-double-up-right-light.svg new file mode 100644 index 0000000..ccf8cb5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-bend-double-up-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-bend-down-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-bend-down-left-light.svg new file mode 100644 index 0000000..5724e99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-bend-down-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-bend-down-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-bend-down-right-light.svg new file mode 100644 index 0000000..107788a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-bend-down-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-bend-left-down-light.svg b/phosphor_orig/SVGs Flat/light/arrow-bend-left-down-light.svg new file mode 100644 index 0000000..9edc1a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-bend-left-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-bend-left-up-light.svg b/phosphor_orig/SVGs Flat/light/arrow-bend-left-up-light.svg new file mode 100644 index 0000000..6f7d9f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-bend-left-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-bend-right-down-light.svg b/phosphor_orig/SVGs Flat/light/arrow-bend-right-down-light.svg new file mode 100644 index 0000000..d013bfd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-bend-right-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-bend-right-up-light.svg b/phosphor_orig/SVGs Flat/light/arrow-bend-right-up-light.svg new file mode 100644 index 0000000..891a79c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-bend-right-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-bend-up-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-bend-up-left-light.svg new file mode 100644 index 0000000..54d441e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-bend-up-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-bend-up-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-bend-up-right-light.svg new file mode 100644 index 0000000..1f0c132 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-bend-up-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-circle-down-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-circle-down-left-light.svg new file mode 100644 index 0000000..357a6de --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-circle-down-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-circle-down-light.svg b/phosphor_orig/SVGs Flat/light/arrow-circle-down-light.svg new file mode 100644 index 0000000..23fc330 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-circle-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-circle-down-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-circle-down-right-light.svg new file mode 100644 index 0000000..985adc4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-circle-down-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-circle-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-circle-left-light.svg new file mode 100644 index 0000000..dd2638f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-circle-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-circle-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-circle-right-light.svg new file mode 100644 index 0000000..eecb634 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-circle-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-circle-up-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-circle-up-left-light.svg new file mode 100644 index 0000000..da7f5ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-circle-up-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-circle-up-light.svg b/phosphor_orig/SVGs Flat/light/arrow-circle-up-light.svg new file mode 100644 index 0000000..1bca324 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-circle-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-circle-up-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-circle-up-right-light.svg new file mode 100644 index 0000000..d29d097 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-circle-up-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-clockwise-light.svg b/phosphor_orig/SVGs Flat/light/arrow-clockwise-light.svg new file mode 100644 index 0000000..57e3f62 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-clockwise-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-counter-clockwise-light.svg b/phosphor_orig/SVGs Flat/light/arrow-counter-clockwise-light.svg new file mode 100644 index 0000000..4b73161 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-counter-clockwise-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-down-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-down-left-light.svg new file mode 100644 index 0000000..22343e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-down-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-down-light.svg b/phosphor_orig/SVGs Flat/light/arrow-down-light.svg new file mode 100644 index 0000000..3940a8c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-down-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-down-right-light.svg new file mode 100644 index 0000000..a3035f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-down-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-elbow-down-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-elbow-down-left-light.svg new file mode 100644 index 0000000..cd00a6d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-elbow-down-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-elbow-down-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-elbow-down-right-light.svg new file mode 100644 index 0000000..6452851 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-elbow-down-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-elbow-left-down-light.svg b/phosphor_orig/SVGs Flat/light/arrow-elbow-left-down-light.svg new file mode 100644 index 0000000..b97f6bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-elbow-left-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-elbow-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-elbow-left-light.svg new file mode 100644 index 0000000..8d7b31d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-elbow-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-elbow-left-up-light.svg b/phosphor_orig/SVGs Flat/light/arrow-elbow-left-up-light.svg new file mode 100644 index 0000000..45fca5a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-elbow-left-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-elbow-right-down-light.svg b/phosphor_orig/SVGs Flat/light/arrow-elbow-right-down-light.svg new file mode 100644 index 0000000..6795c1b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-elbow-right-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-elbow-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-elbow-right-light.svg new file mode 100644 index 0000000..770cd2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-elbow-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-elbow-right-up-light.svg b/phosphor_orig/SVGs Flat/light/arrow-elbow-right-up-light.svg new file mode 100644 index 0000000..bfce86f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-elbow-right-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-elbow-up-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-elbow-up-left-light.svg new file mode 100644 index 0000000..ffa4eac --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-elbow-up-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-elbow-up-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-elbow-up-right-light.svg new file mode 100644 index 0000000..d5702c3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-elbow-up-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-fat-down-light.svg b/phosphor_orig/SVGs Flat/light/arrow-fat-down-light.svg new file mode 100644 index 0000000..a0309c3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-fat-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-fat-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-fat-left-light.svg new file mode 100644 index 0000000..a0f66be --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-fat-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-fat-line-down-light.svg b/phosphor_orig/SVGs Flat/light/arrow-fat-line-down-light.svg new file mode 100644 index 0000000..bd7aa2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-fat-line-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-fat-line-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-fat-line-left-light.svg new file mode 100644 index 0000000..1625c54 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-fat-line-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-fat-line-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-fat-line-right-light.svg new file mode 100644 index 0000000..ea442c3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-fat-line-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-fat-line-up-light.svg b/phosphor_orig/SVGs Flat/light/arrow-fat-line-up-light.svg new file mode 100644 index 0000000..354b512 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-fat-line-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-fat-lines-down-light.svg b/phosphor_orig/SVGs Flat/light/arrow-fat-lines-down-light.svg new file mode 100644 index 0000000..686b41b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-fat-lines-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-fat-lines-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-fat-lines-left-light.svg new file mode 100644 index 0000000..480bac4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-fat-lines-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-fat-lines-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-fat-lines-right-light.svg new file mode 100644 index 0000000..9035a22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-fat-lines-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-fat-lines-up-light.svg b/phosphor_orig/SVGs Flat/light/arrow-fat-lines-up-light.svg new file mode 100644 index 0000000..7f68796 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-fat-lines-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-fat-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-fat-right-light.svg new file mode 100644 index 0000000..642429c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-fat-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-fat-up-light.svg b/phosphor_orig/SVGs Flat/light/arrow-fat-up-light.svg new file mode 100644 index 0000000..50b3a7b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-fat-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-left-light.svg new file mode 100644 index 0000000..6afc991 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-line-down-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-line-down-left-light.svg new file mode 100644 index 0000000..50d9b49 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-line-down-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-line-down-light.svg b/phosphor_orig/SVGs Flat/light/arrow-line-down-light.svg new file mode 100644 index 0000000..e0ad885 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-line-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-line-down-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-line-down-right-light.svg new file mode 100644 index 0000000..3db6f21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-line-down-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-line-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-line-left-light.svg new file mode 100644 index 0000000..212a1ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-line-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-line-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-line-right-light.svg new file mode 100644 index 0000000..dbc3f8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-line-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-line-up-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-line-up-left-light.svg new file mode 100644 index 0000000..05e3753 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-line-up-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-line-up-light.svg b/phosphor_orig/SVGs Flat/light/arrow-line-up-light.svg new file mode 100644 index 0000000..c5244e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-line-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-line-up-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-line-up-right-light.svg new file mode 100644 index 0000000..519ad94 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-line-up-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-right-light.svg new file mode 100644 index 0000000..26c77b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-square-down-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-square-down-left-light.svg new file mode 100644 index 0000000..b74d8f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-square-down-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-square-down-light.svg b/phosphor_orig/SVGs Flat/light/arrow-square-down-light.svg new file mode 100644 index 0000000..582ae86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-square-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-square-down-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-square-down-right-light.svg new file mode 100644 index 0000000..80004eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-square-down-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-square-in-light.svg b/phosphor_orig/SVGs Flat/light/arrow-square-in-light.svg new file mode 100644 index 0000000..2d57734 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-square-in-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-square-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-square-left-light.svg new file mode 100644 index 0000000..a4faa56 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-square-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-square-out-light.svg b/phosphor_orig/SVGs Flat/light/arrow-square-out-light.svg new file mode 100644 index 0000000..92a1f6d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-square-out-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-square-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-square-right-light.svg new file mode 100644 index 0000000..b33c0b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-square-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-square-up-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-square-up-left-light.svg new file mode 100644 index 0000000..bcb8ac6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-square-up-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-square-up-light.svg b/phosphor_orig/SVGs Flat/light/arrow-square-up-light.svg new file mode 100644 index 0000000..7e5150e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-square-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-square-up-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-square-up-right-light.svg new file mode 100644 index 0000000..13f0594 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-square-up-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-u-down-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-u-down-left-light.svg new file mode 100644 index 0000000..3d38bce --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-u-down-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-u-down-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-u-down-right-light.svg new file mode 100644 index 0000000..8fe6965 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-u-down-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-u-left-down-light.svg b/phosphor_orig/SVGs Flat/light/arrow-u-left-down-light.svg new file mode 100644 index 0000000..28d8226 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-u-left-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-u-left-up-light.svg b/phosphor_orig/SVGs Flat/light/arrow-u-left-up-light.svg new file mode 100644 index 0000000..d0604a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-u-left-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-u-right-down-light.svg b/phosphor_orig/SVGs Flat/light/arrow-u-right-down-light.svg new file mode 100644 index 0000000..28305a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-u-right-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-u-right-up-light.svg b/phosphor_orig/SVGs Flat/light/arrow-u-right-up-light.svg new file mode 100644 index 0000000..e1548e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-u-right-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-u-up-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-u-up-left-light.svg new file mode 100644 index 0000000..84c5784 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-u-up-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-u-up-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-u-up-right-light.svg new file mode 100644 index 0000000..64bcf94 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-u-up-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-up-left-light.svg b/phosphor_orig/SVGs Flat/light/arrow-up-left-light.svg new file mode 100644 index 0000000..3226b79 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-up-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-up-light.svg b/phosphor_orig/SVGs Flat/light/arrow-up-light.svg new file mode 100644 index 0000000..f83843e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrow-up-right-light.svg b/phosphor_orig/SVGs Flat/light/arrow-up-right-light.svg new file mode 100644 index 0000000..f6e576c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrow-up-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-clockwise-light.svg b/phosphor_orig/SVGs Flat/light/arrows-clockwise-light.svg new file mode 100644 index 0000000..b70da03 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-clockwise-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-counter-clockwise-light.svg b/phosphor_orig/SVGs Flat/light/arrows-counter-clockwise-light.svg new file mode 100644 index 0000000..13d0238 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-counter-clockwise-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-down-up-light.svg b/phosphor_orig/SVGs Flat/light/arrows-down-up-light.svg new file mode 100644 index 0000000..9937e18 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-down-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-horizontal-light.svg b/phosphor_orig/SVGs Flat/light/arrows-horizontal-light.svg new file mode 100644 index 0000000..b9714c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-horizontal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-in-cardinal-light.svg b/phosphor_orig/SVGs Flat/light/arrows-in-cardinal-light.svg new file mode 100644 index 0000000..312f1f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-in-cardinal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-in-light.svg b/phosphor_orig/SVGs Flat/light/arrows-in-light.svg new file mode 100644 index 0000000..566a049 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-in-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-in-line-horizontal-light.svg b/phosphor_orig/SVGs Flat/light/arrows-in-line-horizontal-light.svg new file mode 100644 index 0000000..cf56d5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-in-line-horizontal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-in-line-vertical-light.svg b/phosphor_orig/SVGs Flat/light/arrows-in-line-vertical-light.svg new file mode 100644 index 0000000..7cdc679 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-in-line-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-in-simple-light.svg b/phosphor_orig/SVGs Flat/light/arrows-in-simple-light.svg new file mode 100644 index 0000000..5a2cf2c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-in-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-left-right-light.svg b/phosphor_orig/SVGs Flat/light/arrows-left-right-light.svg new file mode 100644 index 0000000..a1bb5c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-left-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-merge-light.svg b/phosphor_orig/SVGs Flat/light/arrows-merge-light.svg new file mode 100644 index 0000000..5c5c7da --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-merge-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-out-cardinal-light.svg b/phosphor_orig/SVGs Flat/light/arrows-out-cardinal-light.svg new file mode 100644 index 0000000..98ab1f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-out-cardinal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-out-light.svg b/phosphor_orig/SVGs Flat/light/arrows-out-light.svg new file mode 100644 index 0000000..19eb317 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-out-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-out-line-horizontal-light.svg b/phosphor_orig/SVGs Flat/light/arrows-out-line-horizontal-light.svg new file mode 100644 index 0000000..1771c4a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-out-line-horizontal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-out-line-vertical-light.svg b/phosphor_orig/SVGs Flat/light/arrows-out-line-vertical-light.svg new file mode 100644 index 0000000..87ec3fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-out-line-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-out-simple-light.svg b/phosphor_orig/SVGs Flat/light/arrows-out-simple-light.svg new file mode 100644 index 0000000..852a880 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-out-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-split-light.svg b/phosphor_orig/SVGs Flat/light/arrows-split-light.svg new file mode 100644 index 0000000..d23c867 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-split-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/arrows-vertical-light.svg b/phosphor_orig/SVGs Flat/light/arrows-vertical-light.svg new file mode 100644 index 0000000..68f0ea4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/arrows-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/article-light.svg b/phosphor_orig/SVGs Flat/light/article-light.svg new file mode 100644 index 0000000..f0c1e97 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/article-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/article-medium-light.svg b/phosphor_orig/SVGs Flat/light/article-medium-light.svg new file mode 100644 index 0000000..49cf104 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/article-medium-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/article-ny-times-light.svg b/phosphor_orig/SVGs Flat/light/article-ny-times-light.svg new file mode 100644 index 0000000..f2da9cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/article-ny-times-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/asclepius-light.svg b/phosphor_orig/SVGs Flat/light/asclepius-light.svg new file mode 100644 index 0000000..5e6a509 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/asclepius-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/asterisk-light.svg b/phosphor_orig/SVGs Flat/light/asterisk-light.svg new file mode 100644 index 0000000..de8d037 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/asterisk-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/asterisk-simple-light.svg b/phosphor_orig/SVGs Flat/light/asterisk-simple-light.svg new file mode 100644 index 0000000..6bda8fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/asterisk-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/at-light.svg b/phosphor_orig/SVGs Flat/light/at-light.svg new file mode 100644 index 0000000..851d33b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/at-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/atom-light.svg b/phosphor_orig/SVGs Flat/light/atom-light.svg new file mode 100644 index 0000000..6581184 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/atom-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/avocado-light.svg b/phosphor_orig/SVGs Flat/light/avocado-light.svg new file mode 100644 index 0000000..f3f7481 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/avocado-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/axe-light.svg b/phosphor_orig/SVGs Flat/light/axe-light.svg new file mode 100644 index 0000000..7bc88c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/axe-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/baby-carriage-light.svg b/phosphor_orig/SVGs Flat/light/baby-carriage-light.svg new file mode 100644 index 0000000..7aac424 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/baby-carriage-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/baby-light.svg b/phosphor_orig/SVGs Flat/light/baby-light.svg new file mode 100644 index 0000000..6fed78b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/baby-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/backpack-light.svg b/phosphor_orig/SVGs Flat/light/backpack-light.svg new file mode 100644 index 0000000..3319dd7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/backpack-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/backspace-light.svg b/phosphor_orig/SVGs Flat/light/backspace-light.svg new file mode 100644 index 0000000..48e136e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/backspace-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bag-light.svg b/phosphor_orig/SVGs Flat/light/bag-light.svg new file mode 100644 index 0000000..1b3c75d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bag-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bag-simple-light.svg b/phosphor_orig/SVGs Flat/light/bag-simple-light.svg new file mode 100644 index 0000000..b6c1263 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bag-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/balloon-light.svg b/phosphor_orig/SVGs Flat/light/balloon-light.svg new file mode 100644 index 0000000..3e505ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/balloon-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bandaids-light.svg b/phosphor_orig/SVGs Flat/light/bandaids-light.svg new file mode 100644 index 0000000..3b1b1ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bandaids-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bank-light.svg b/phosphor_orig/SVGs Flat/light/bank-light.svg new file mode 100644 index 0000000..7bd8f1e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bank-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/barbell-light.svg b/phosphor_orig/SVGs Flat/light/barbell-light.svg new file mode 100644 index 0000000..5e50c4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/barbell-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/barcode-light.svg b/phosphor_orig/SVGs Flat/light/barcode-light.svg new file mode 100644 index 0000000..748e52e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/barcode-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/barn-light.svg b/phosphor_orig/SVGs Flat/light/barn-light.svg new file mode 100644 index 0000000..9a21f2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/barn-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/barricade-light.svg b/phosphor_orig/SVGs Flat/light/barricade-light.svg new file mode 100644 index 0000000..b11cd4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/barricade-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/baseball-cap-light.svg b/phosphor_orig/SVGs Flat/light/baseball-cap-light.svg new file mode 100644 index 0000000..fdb75bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/baseball-cap-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/baseball-helmet-light.svg b/phosphor_orig/SVGs Flat/light/baseball-helmet-light.svg new file mode 100644 index 0000000..5d5e58d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/baseball-helmet-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/baseball-light.svg b/phosphor_orig/SVGs Flat/light/baseball-light.svg new file mode 100644 index 0000000..07aa47c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/baseball-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/basket-light.svg b/phosphor_orig/SVGs Flat/light/basket-light.svg new file mode 100644 index 0000000..fbad14a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/basket-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/basketball-light.svg b/phosphor_orig/SVGs Flat/light/basketball-light.svg new file mode 100644 index 0000000..e3c51d6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/basketball-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bathtub-light.svg b/phosphor_orig/SVGs Flat/light/bathtub-light.svg new file mode 100644 index 0000000..c2404ce --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bathtub-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-charging-light.svg b/phosphor_orig/SVGs Flat/light/battery-charging-light.svg new file mode 100644 index 0000000..d469199 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-charging-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-charging-vertical-light.svg b/phosphor_orig/SVGs Flat/light/battery-charging-vertical-light.svg new file mode 100644 index 0000000..86867dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-charging-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-empty-light.svg b/phosphor_orig/SVGs Flat/light/battery-empty-light.svg new file mode 100644 index 0000000..c06a673 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-empty-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-full-light.svg b/phosphor_orig/SVGs Flat/light/battery-full-light.svg new file mode 100644 index 0000000..956831f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-full-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-high-light.svg b/phosphor_orig/SVGs Flat/light/battery-high-light.svg new file mode 100644 index 0000000..5bc203f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-high-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-low-light.svg b/phosphor_orig/SVGs Flat/light/battery-low-light.svg new file mode 100644 index 0000000..042866d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-low-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-medium-light.svg b/phosphor_orig/SVGs Flat/light/battery-medium-light.svg new file mode 100644 index 0000000..308812c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-medium-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-plus-light.svg b/phosphor_orig/SVGs Flat/light/battery-plus-light.svg new file mode 100644 index 0000000..db1a9b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-plus-vertical-light.svg b/phosphor_orig/SVGs Flat/light/battery-plus-vertical-light.svg new file mode 100644 index 0000000..4846e63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-plus-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-vertical-empty-light.svg b/phosphor_orig/SVGs Flat/light/battery-vertical-empty-light.svg new file mode 100644 index 0000000..8e330b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-vertical-empty-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-vertical-full-light.svg b/phosphor_orig/SVGs Flat/light/battery-vertical-full-light.svg new file mode 100644 index 0000000..50a18db --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-vertical-full-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-vertical-high-light.svg b/phosphor_orig/SVGs Flat/light/battery-vertical-high-light.svg new file mode 100644 index 0000000..9decf33 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-vertical-high-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-vertical-low-light.svg b/phosphor_orig/SVGs Flat/light/battery-vertical-low-light.svg new file mode 100644 index 0000000..e6dcba3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-vertical-low-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-vertical-medium-light.svg b/phosphor_orig/SVGs Flat/light/battery-vertical-medium-light.svg new file mode 100644 index 0000000..ba7b75e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-vertical-medium-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-warning-light.svg b/phosphor_orig/SVGs Flat/light/battery-warning-light.svg new file mode 100644 index 0000000..ef93bd4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-warning-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/battery-warning-vertical-light.svg b/phosphor_orig/SVGs Flat/light/battery-warning-vertical-light.svg new file mode 100644 index 0000000..7f37187 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/battery-warning-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/beach-ball-light.svg b/phosphor_orig/SVGs Flat/light/beach-ball-light.svg new file mode 100644 index 0000000..dec882f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/beach-ball-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/beanie-light.svg b/phosphor_orig/SVGs Flat/light/beanie-light.svg new file mode 100644 index 0000000..65ccfc1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/beanie-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bed-light.svg b/phosphor_orig/SVGs Flat/light/bed-light.svg new file mode 100644 index 0000000..58c9c0c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bed-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/beer-bottle-light.svg b/phosphor_orig/SVGs Flat/light/beer-bottle-light.svg new file mode 100644 index 0000000..c79ec58 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/beer-bottle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/beer-stein-light.svg b/phosphor_orig/SVGs Flat/light/beer-stein-light.svg new file mode 100644 index 0000000..5151a6f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/beer-stein-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/behance-logo-light.svg b/phosphor_orig/SVGs Flat/light/behance-logo-light.svg new file mode 100644 index 0000000..f9c9911 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/behance-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bell-light.svg b/phosphor_orig/SVGs Flat/light/bell-light.svg new file mode 100644 index 0000000..a46b4ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bell-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bell-ringing-light.svg b/phosphor_orig/SVGs Flat/light/bell-ringing-light.svg new file mode 100644 index 0000000..027452f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bell-ringing-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bell-simple-light.svg b/phosphor_orig/SVGs Flat/light/bell-simple-light.svg new file mode 100644 index 0000000..82b70a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bell-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bell-simple-ringing-light.svg b/phosphor_orig/SVGs Flat/light/bell-simple-ringing-light.svg new file mode 100644 index 0000000..fd53937 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bell-simple-ringing-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bell-simple-slash-light.svg b/phosphor_orig/SVGs Flat/light/bell-simple-slash-light.svg new file mode 100644 index 0000000..012443b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bell-simple-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bell-simple-z-light.svg b/phosphor_orig/SVGs Flat/light/bell-simple-z-light.svg new file mode 100644 index 0000000..7394fe6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bell-simple-z-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bell-slash-light.svg b/phosphor_orig/SVGs Flat/light/bell-slash-light.svg new file mode 100644 index 0000000..7a8cf0b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bell-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bell-z-light.svg b/phosphor_orig/SVGs Flat/light/bell-z-light.svg new file mode 100644 index 0000000..b93e237 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bell-z-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/belt-light.svg b/phosphor_orig/SVGs Flat/light/belt-light.svg new file mode 100644 index 0000000..9a399f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/belt-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bezier-curve-light.svg b/phosphor_orig/SVGs Flat/light/bezier-curve-light.svg new file mode 100644 index 0000000..7283796 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bezier-curve-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bicycle-light.svg b/phosphor_orig/SVGs Flat/light/bicycle-light.svg new file mode 100644 index 0000000..d1f768c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bicycle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/binary-light.svg b/phosphor_orig/SVGs Flat/light/binary-light.svg new file mode 100644 index 0000000..234ed7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/binary-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/binoculars-light.svg b/phosphor_orig/SVGs Flat/light/binoculars-light.svg new file mode 100644 index 0000000..355f1b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/binoculars-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/biohazard-light.svg b/phosphor_orig/SVGs Flat/light/biohazard-light.svg new file mode 100644 index 0000000..6cad1c6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/biohazard-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bird-light.svg b/phosphor_orig/SVGs Flat/light/bird-light.svg new file mode 100644 index 0000000..ff6220b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bird-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/blueprint-light.svg b/phosphor_orig/SVGs Flat/light/blueprint-light.svg new file mode 100644 index 0000000..1bc9490 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/blueprint-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bluetooth-connected-light.svg b/phosphor_orig/SVGs Flat/light/bluetooth-connected-light.svg new file mode 100644 index 0000000..b423fc8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bluetooth-connected-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bluetooth-light.svg b/phosphor_orig/SVGs Flat/light/bluetooth-light.svg new file mode 100644 index 0000000..f1263f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bluetooth-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bluetooth-slash-light.svg b/phosphor_orig/SVGs Flat/light/bluetooth-slash-light.svg new file mode 100644 index 0000000..00f21fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bluetooth-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bluetooth-x-light.svg b/phosphor_orig/SVGs Flat/light/bluetooth-x-light.svg new file mode 100644 index 0000000..ec3bda6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bluetooth-x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/boat-light.svg b/phosphor_orig/SVGs Flat/light/boat-light.svg new file mode 100644 index 0000000..19a7b19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/boat-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bomb-light.svg b/phosphor_orig/SVGs Flat/light/bomb-light.svg new file mode 100644 index 0000000..a3ba9bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bomb-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bone-light.svg b/phosphor_orig/SVGs Flat/light/bone-light.svg new file mode 100644 index 0000000..43abaac --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bone-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/book-bookmark-light.svg b/phosphor_orig/SVGs Flat/light/book-bookmark-light.svg new file mode 100644 index 0000000..49eb018 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/book-bookmark-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/book-light.svg b/phosphor_orig/SVGs Flat/light/book-light.svg new file mode 100644 index 0000000..be830fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/book-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/book-open-light.svg b/phosphor_orig/SVGs Flat/light/book-open-light.svg new file mode 100644 index 0000000..9a6205e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/book-open-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/book-open-text-light.svg b/phosphor_orig/SVGs Flat/light/book-open-text-light.svg new file mode 100644 index 0000000..a762905 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/book-open-text-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/book-user-light.svg b/phosphor_orig/SVGs Flat/light/book-user-light.svg new file mode 100644 index 0000000..2692217 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/book-user-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bookmark-light.svg b/phosphor_orig/SVGs Flat/light/bookmark-light.svg new file mode 100644 index 0000000..7b811bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bookmark-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bookmark-simple-light.svg b/phosphor_orig/SVGs Flat/light/bookmark-simple-light.svg new file mode 100644 index 0000000..612782a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bookmark-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bookmarks-light.svg b/phosphor_orig/SVGs Flat/light/bookmarks-light.svg new file mode 100644 index 0000000..a507da7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bookmarks-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bookmarks-simple-light.svg b/phosphor_orig/SVGs Flat/light/bookmarks-simple-light.svg new file mode 100644 index 0000000..cc153c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bookmarks-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/books-light.svg b/phosphor_orig/SVGs Flat/light/books-light.svg new file mode 100644 index 0000000..8e3d93f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/books-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/boot-light.svg b/phosphor_orig/SVGs Flat/light/boot-light.svg new file mode 100644 index 0000000..347c426 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/boot-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/boules-light.svg b/phosphor_orig/SVGs Flat/light/boules-light.svg new file mode 100644 index 0000000..9069c86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/boules-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bounding-box-light.svg b/phosphor_orig/SVGs Flat/light/bounding-box-light.svg new file mode 100644 index 0000000..6724fac --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bounding-box-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bowl-food-light.svg b/phosphor_orig/SVGs Flat/light/bowl-food-light.svg new file mode 100644 index 0000000..1624f50 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bowl-food-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bowl-steam-light.svg b/phosphor_orig/SVGs Flat/light/bowl-steam-light.svg new file mode 100644 index 0000000..a03f94b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bowl-steam-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bowling-ball-light.svg b/phosphor_orig/SVGs Flat/light/bowling-ball-light.svg new file mode 100644 index 0000000..8a642ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bowling-ball-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/box-arrow-down-light.svg b/phosphor_orig/SVGs Flat/light/box-arrow-down-light.svg new file mode 100644 index 0000000..28ee865 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/box-arrow-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/box-arrow-up-light.svg b/phosphor_orig/SVGs Flat/light/box-arrow-up-light.svg new file mode 100644 index 0000000..38248b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/box-arrow-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/boxing-glove-light.svg b/phosphor_orig/SVGs Flat/light/boxing-glove-light.svg new file mode 100644 index 0000000..e44552b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/boxing-glove-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/brackets-angle-light.svg b/phosphor_orig/SVGs Flat/light/brackets-angle-light.svg new file mode 100644 index 0000000..0fba8c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/brackets-angle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/brackets-curly-light.svg b/phosphor_orig/SVGs Flat/light/brackets-curly-light.svg new file mode 100644 index 0000000..1b79163 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/brackets-curly-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/brackets-round-light.svg b/phosphor_orig/SVGs Flat/light/brackets-round-light.svg new file mode 100644 index 0000000..da4b65f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/brackets-round-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/brackets-square-light.svg b/phosphor_orig/SVGs Flat/light/brackets-square-light.svg new file mode 100644 index 0000000..f66655b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/brackets-square-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/brain-light.svg b/phosphor_orig/SVGs Flat/light/brain-light.svg new file mode 100644 index 0000000..ff3c029 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/brain-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/brandy-light.svg b/phosphor_orig/SVGs Flat/light/brandy-light.svg new file mode 100644 index 0000000..4d2bca9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/brandy-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bread-light.svg b/phosphor_orig/SVGs Flat/light/bread-light.svg new file mode 100644 index 0000000..aacf305 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bread-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bridge-light.svg b/phosphor_orig/SVGs Flat/light/bridge-light.svg new file mode 100644 index 0000000..9a173fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bridge-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/briefcase-light.svg b/phosphor_orig/SVGs Flat/light/briefcase-light.svg new file mode 100644 index 0000000..9521bc7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/briefcase-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/briefcase-metal-light.svg b/phosphor_orig/SVGs Flat/light/briefcase-metal-light.svg new file mode 100644 index 0000000..316c208 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/briefcase-metal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/broadcast-light.svg b/phosphor_orig/SVGs Flat/light/broadcast-light.svg new file mode 100644 index 0000000..375b2bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/broadcast-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/broom-light.svg b/phosphor_orig/SVGs Flat/light/broom-light.svg new file mode 100644 index 0000000..bd5f0a8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/broom-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/browser-light.svg b/phosphor_orig/SVGs Flat/light/browser-light.svg new file mode 100644 index 0000000..53c44e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/browser-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/browsers-light.svg b/phosphor_orig/SVGs Flat/light/browsers-light.svg new file mode 100644 index 0000000..eb9cef0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/browsers-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bug-beetle-light.svg b/phosphor_orig/SVGs Flat/light/bug-beetle-light.svg new file mode 100644 index 0000000..74220d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bug-beetle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bug-droid-light.svg b/phosphor_orig/SVGs Flat/light/bug-droid-light.svg new file mode 100644 index 0000000..5c94812 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bug-droid-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bug-light.svg b/phosphor_orig/SVGs Flat/light/bug-light.svg new file mode 100644 index 0000000..7fbb64c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bug-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/building-apartment-light.svg b/phosphor_orig/SVGs Flat/light/building-apartment-light.svg new file mode 100644 index 0000000..c1ce620 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/building-apartment-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/building-light.svg b/phosphor_orig/SVGs Flat/light/building-light.svg new file mode 100644 index 0000000..79514bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/building-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/building-office-light.svg b/phosphor_orig/SVGs Flat/light/building-office-light.svg new file mode 100644 index 0000000..bd31ebb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/building-office-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/buildings-light.svg b/phosphor_orig/SVGs Flat/light/buildings-light.svg new file mode 100644 index 0000000..2d591ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/buildings-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bulldozer-light.svg b/phosphor_orig/SVGs Flat/light/bulldozer-light.svg new file mode 100644 index 0000000..dcda679 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bulldozer-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/bus-light.svg b/phosphor_orig/SVGs Flat/light/bus-light.svg new file mode 100644 index 0000000..079ffbc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/bus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/butterfly-light.svg b/phosphor_orig/SVGs Flat/light/butterfly-light.svg new file mode 100644 index 0000000..baa6c1f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/butterfly-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cable-car-light.svg b/phosphor_orig/SVGs Flat/light/cable-car-light.svg new file mode 100644 index 0000000..97acf8e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cable-car-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cactus-light.svg b/phosphor_orig/SVGs Flat/light/cactus-light.svg new file mode 100644 index 0000000..c36c76c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cactus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cake-light.svg b/phosphor_orig/SVGs Flat/light/cake-light.svg new file mode 100644 index 0000000..ae728a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cake-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/calculator-light.svg b/phosphor_orig/SVGs Flat/light/calculator-light.svg new file mode 100644 index 0000000..2d29d90 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/calculator-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/calendar-blank-light.svg b/phosphor_orig/SVGs Flat/light/calendar-blank-light.svg new file mode 100644 index 0000000..6f81f83 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/calendar-blank-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/calendar-check-light.svg b/phosphor_orig/SVGs Flat/light/calendar-check-light.svg new file mode 100644 index 0000000..c9f7976 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/calendar-check-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/calendar-dot-light.svg b/phosphor_orig/SVGs Flat/light/calendar-dot-light.svg new file mode 100644 index 0000000..935e77e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/calendar-dot-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/calendar-dots-light.svg b/phosphor_orig/SVGs Flat/light/calendar-dots-light.svg new file mode 100644 index 0000000..99a6b29 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/calendar-dots-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/calendar-heart-light.svg b/phosphor_orig/SVGs Flat/light/calendar-heart-light.svg new file mode 100644 index 0000000..27d5d32 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/calendar-heart-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/calendar-light.svg b/phosphor_orig/SVGs Flat/light/calendar-light.svg new file mode 100644 index 0000000..4dbf4b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/calendar-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/calendar-minus-light.svg b/phosphor_orig/SVGs Flat/light/calendar-minus-light.svg new file mode 100644 index 0000000..7965f81 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/calendar-minus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/calendar-plus-light.svg b/phosphor_orig/SVGs Flat/light/calendar-plus-light.svg new file mode 100644 index 0000000..2ba48e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/calendar-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/calendar-slash-light.svg b/phosphor_orig/SVGs Flat/light/calendar-slash-light.svg new file mode 100644 index 0000000..fe3ccef --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/calendar-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/calendar-star-light.svg b/phosphor_orig/SVGs Flat/light/calendar-star-light.svg new file mode 100644 index 0000000..5cdcb19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/calendar-star-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/calendar-x-light.svg b/phosphor_orig/SVGs Flat/light/calendar-x-light.svg new file mode 100644 index 0000000..d1ca0a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/calendar-x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/call-bell-light.svg b/phosphor_orig/SVGs Flat/light/call-bell-light.svg new file mode 100644 index 0000000..69365d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/call-bell-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/camera-light.svg b/phosphor_orig/SVGs Flat/light/camera-light.svg new file mode 100644 index 0000000..789852a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/camera-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/camera-plus-light.svg b/phosphor_orig/SVGs Flat/light/camera-plus-light.svg new file mode 100644 index 0000000..22fc9ce --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/camera-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/camera-rotate-light.svg b/phosphor_orig/SVGs Flat/light/camera-rotate-light.svg new file mode 100644 index 0000000..8a31e15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/camera-rotate-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/camera-slash-light.svg b/phosphor_orig/SVGs Flat/light/camera-slash-light.svg new file mode 100644 index 0000000..9382fcb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/camera-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/campfire-light.svg b/phosphor_orig/SVGs Flat/light/campfire-light.svg new file mode 100644 index 0000000..8a2e4c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/campfire-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/car-battery-light.svg b/phosphor_orig/SVGs Flat/light/car-battery-light.svg new file mode 100644 index 0000000..d33d4d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/car-battery-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/car-light.svg b/phosphor_orig/SVGs Flat/light/car-light.svg new file mode 100644 index 0000000..4c2a8a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/car-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/car-profile-light.svg b/phosphor_orig/SVGs Flat/light/car-profile-light.svg new file mode 100644 index 0000000..8a0a061 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/car-profile-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/car-simple-light.svg b/phosphor_orig/SVGs Flat/light/car-simple-light.svg new file mode 100644 index 0000000..74f454a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/car-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cardholder-light.svg b/phosphor_orig/SVGs Flat/light/cardholder-light.svg new file mode 100644 index 0000000..e67eb06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cardholder-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cards-light.svg b/phosphor_orig/SVGs Flat/light/cards-light.svg new file mode 100644 index 0000000..4035e7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cards-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cards-three-light.svg b/phosphor_orig/SVGs Flat/light/cards-three-light.svg new file mode 100644 index 0000000..ebccad9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cards-three-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-circle-double-down-light.svg b/phosphor_orig/SVGs Flat/light/caret-circle-double-down-light.svg new file mode 100644 index 0000000..6bf911c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-circle-double-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-circle-double-left-light.svg b/phosphor_orig/SVGs Flat/light/caret-circle-double-left-light.svg new file mode 100644 index 0000000..b39642b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-circle-double-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-circle-double-right-light.svg b/phosphor_orig/SVGs Flat/light/caret-circle-double-right-light.svg new file mode 100644 index 0000000..f4896a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-circle-double-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-circle-double-up-light.svg b/phosphor_orig/SVGs Flat/light/caret-circle-double-up-light.svg new file mode 100644 index 0000000..7adce04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-circle-double-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-circle-down-light.svg b/phosphor_orig/SVGs Flat/light/caret-circle-down-light.svg new file mode 100644 index 0000000..9370853 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-circle-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-circle-left-light.svg b/phosphor_orig/SVGs Flat/light/caret-circle-left-light.svg new file mode 100644 index 0000000..ce6161a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-circle-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-circle-right-light.svg b/phosphor_orig/SVGs Flat/light/caret-circle-right-light.svg new file mode 100644 index 0000000..df9acbd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-circle-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-circle-up-down-light.svg b/phosphor_orig/SVGs Flat/light/caret-circle-up-down-light.svg new file mode 100644 index 0000000..d8f5b45 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-circle-up-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-circle-up-light.svg b/phosphor_orig/SVGs Flat/light/caret-circle-up-light.svg new file mode 100644 index 0000000..e2da213 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-circle-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-double-down-light.svg b/phosphor_orig/SVGs Flat/light/caret-double-down-light.svg new file mode 100644 index 0000000..a8f86fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-double-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-double-left-light.svg b/phosphor_orig/SVGs Flat/light/caret-double-left-light.svg new file mode 100644 index 0000000..2fc61bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-double-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-double-right-light.svg b/phosphor_orig/SVGs Flat/light/caret-double-right-light.svg new file mode 100644 index 0000000..af5c633 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-double-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-double-up-light.svg b/phosphor_orig/SVGs Flat/light/caret-double-up-light.svg new file mode 100644 index 0000000..e10674d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-double-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-down-light.svg b/phosphor_orig/SVGs Flat/light/caret-down-light.svg new file mode 100644 index 0000000..04f7677 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-left-light.svg b/phosphor_orig/SVGs Flat/light/caret-left-light.svg new file mode 100644 index 0000000..fd03f32 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-line-down-light.svg b/phosphor_orig/SVGs Flat/light/caret-line-down-light.svg new file mode 100644 index 0000000..64c068f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-line-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-line-left-light.svg b/phosphor_orig/SVGs Flat/light/caret-line-left-light.svg new file mode 100644 index 0000000..d884c3d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-line-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-line-right-light.svg b/phosphor_orig/SVGs Flat/light/caret-line-right-light.svg new file mode 100644 index 0000000..98db186 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-line-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-line-up-light.svg b/phosphor_orig/SVGs Flat/light/caret-line-up-light.svg new file mode 100644 index 0000000..ac0afee --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-line-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-right-light.svg b/phosphor_orig/SVGs Flat/light/caret-right-light.svg new file mode 100644 index 0000000..7eb8f42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-up-down-light.svg b/phosphor_orig/SVGs Flat/light/caret-up-down-light.svg new file mode 100644 index 0000000..3a454d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-up-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/caret-up-light.svg b/phosphor_orig/SVGs Flat/light/caret-up-light.svg new file mode 100644 index 0000000..c987832 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/caret-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/carrot-light.svg b/phosphor_orig/SVGs Flat/light/carrot-light.svg new file mode 100644 index 0000000..b1d2973 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/carrot-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cash-register-light.svg b/phosphor_orig/SVGs Flat/light/cash-register-light.svg new file mode 100644 index 0000000..c0ab2a8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cash-register-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cassette-tape-light.svg b/phosphor_orig/SVGs Flat/light/cassette-tape-light.svg new file mode 100644 index 0000000..fad5b78 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cassette-tape-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/castle-turret-light.svg b/phosphor_orig/SVGs Flat/light/castle-turret-light.svg new file mode 100644 index 0000000..11fe426 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/castle-turret-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cat-light.svg b/phosphor_orig/SVGs Flat/light/cat-light.svg new file mode 100644 index 0000000..86d64be --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cat-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cell-signal-full-light.svg b/phosphor_orig/SVGs Flat/light/cell-signal-full-light.svg new file mode 100644 index 0000000..d8fd8a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cell-signal-full-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cell-signal-high-light.svg b/phosphor_orig/SVGs Flat/light/cell-signal-high-light.svg new file mode 100644 index 0000000..7289c0e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cell-signal-high-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cell-signal-low-light.svg b/phosphor_orig/SVGs Flat/light/cell-signal-low-light.svg new file mode 100644 index 0000000..be8c4d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cell-signal-low-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cell-signal-medium-light.svg b/phosphor_orig/SVGs Flat/light/cell-signal-medium-light.svg new file mode 100644 index 0000000..76bec02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cell-signal-medium-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cell-signal-none-light.svg b/phosphor_orig/SVGs Flat/light/cell-signal-none-light.svg new file mode 100644 index 0000000..cf7c802 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cell-signal-none-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cell-signal-slash-light.svg b/phosphor_orig/SVGs Flat/light/cell-signal-slash-light.svg new file mode 100644 index 0000000..85a8dca --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cell-signal-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cell-signal-x-light.svg b/phosphor_orig/SVGs Flat/light/cell-signal-x-light.svg new file mode 100644 index 0000000..385d01b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cell-signal-x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cell-tower-light.svg b/phosphor_orig/SVGs Flat/light/cell-tower-light.svg new file mode 100644 index 0000000..5a590df --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cell-tower-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/certificate-light.svg b/phosphor_orig/SVGs Flat/light/certificate-light.svg new file mode 100644 index 0000000..6b623a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/certificate-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chair-light.svg b/phosphor_orig/SVGs Flat/light/chair-light.svg new file mode 100644 index 0000000..dae9653 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chair-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chalkboard-light.svg b/phosphor_orig/SVGs Flat/light/chalkboard-light.svg new file mode 100644 index 0000000..6fb04d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chalkboard-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chalkboard-simple-light.svg b/phosphor_orig/SVGs Flat/light/chalkboard-simple-light.svg new file mode 100644 index 0000000..a61e396 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chalkboard-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chalkboard-teacher-light.svg b/phosphor_orig/SVGs Flat/light/chalkboard-teacher-light.svg new file mode 100644 index 0000000..48c54a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chalkboard-teacher-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/champagne-light.svg b/phosphor_orig/SVGs Flat/light/champagne-light.svg new file mode 100644 index 0000000..64a4120 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/champagne-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/charging-station-light.svg b/phosphor_orig/SVGs Flat/light/charging-station-light.svg new file mode 100644 index 0000000..c0cbee9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/charging-station-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chart-bar-horizontal-light.svg b/phosphor_orig/SVGs Flat/light/chart-bar-horizontal-light.svg new file mode 100644 index 0000000..b6f0706 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chart-bar-horizontal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chart-bar-light.svg b/phosphor_orig/SVGs Flat/light/chart-bar-light.svg new file mode 100644 index 0000000..ce4e54e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chart-bar-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chart-donut-light.svg b/phosphor_orig/SVGs Flat/light/chart-donut-light.svg new file mode 100644 index 0000000..47b64a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chart-donut-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chart-line-down-light.svg b/phosphor_orig/SVGs Flat/light/chart-line-down-light.svg new file mode 100644 index 0000000..b4ec160 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chart-line-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chart-line-light.svg b/phosphor_orig/SVGs Flat/light/chart-line-light.svg new file mode 100644 index 0000000..c96b369 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chart-line-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chart-line-up-light.svg b/phosphor_orig/SVGs Flat/light/chart-line-up-light.svg new file mode 100644 index 0000000..a3df56b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chart-line-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chart-pie-light.svg b/phosphor_orig/SVGs Flat/light/chart-pie-light.svg new file mode 100644 index 0000000..c7c6015 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chart-pie-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chart-pie-slice-light.svg b/phosphor_orig/SVGs Flat/light/chart-pie-slice-light.svg new file mode 100644 index 0000000..94d802f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chart-pie-slice-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chart-polar-light.svg b/phosphor_orig/SVGs Flat/light/chart-polar-light.svg new file mode 100644 index 0000000..291268e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chart-polar-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chart-scatter-light.svg b/phosphor_orig/SVGs Flat/light/chart-scatter-light.svg new file mode 100644 index 0000000..693b27f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chart-scatter-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-centered-dots-light.svg b/phosphor_orig/SVGs Flat/light/chat-centered-dots-light.svg new file mode 100644 index 0000000..f78b1de --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-centered-dots-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-centered-light.svg b/phosphor_orig/SVGs Flat/light/chat-centered-light.svg new file mode 100644 index 0000000..51b0d6f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-centered-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-centered-slash-light.svg b/phosphor_orig/SVGs Flat/light/chat-centered-slash-light.svg new file mode 100644 index 0000000..b15d383 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-centered-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-centered-text-light.svg b/phosphor_orig/SVGs Flat/light/chat-centered-text-light.svg new file mode 100644 index 0000000..af6c92e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-centered-text-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-circle-dots-light.svg b/phosphor_orig/SVGs Flat/light/chat-circle-dots-light.svg new file mode 100644 index 0000000..691d06f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-circle-dots-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-circle-light.svg b/phosphor_orig/SVGs Flat/light/chat-circle-light.svg new file mode 100644 index 0000000..27d5d55 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-circle-slash-light.svg b/phosphor_orig/SVGs Flat/light/chat-circle-slash-light.svg new file mode 100644 index 0000000..e0dca5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-circle-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-circle-text-light.svg b/phosphor_orig/SVGs Flat/light/chat-circle-text-light.svg new file mode 100644 index 0000000..5b053d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-circle-text-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-dots-light.svg b/phosphor_orig/SVGs Flat/light/chat-dots-light.svg new file mode 100644 index 0000000..d6747e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-dots-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-light.svg b/phosphor_orig/SVGs Flat/light/chat-light.svg new file mode 100644 index 0000000..99d00ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-slash-light.svg b/phosphor_orig/SVGs Flat/light/chat-slash-light.svg new file mode 100644 index 0000000..6a159e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-teardrop-dots-light.svg b/phosphor_orig/SVGs Flat/light/chat-teardrop-dots-light.svg new file mode 100644 index 0000000..e15ba57 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-teardrop-dots-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-teardrop-light.svg b/phosphor_orig/SVGs Flat/light/chat-teardrop-light.svg new file mode 100644 index 0000000..5bc2c49 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-teardrop-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-teardrop-slash-light.svg b/phosphor_orig/SVGs Flat/light/chat-teardrop-slash-light.svg new file mode 100644 index 0000000..75595e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-teardrop-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-teardrop-text-light.svg b/phosphor_orig/SVGs Flat/light/chat-teardrop-text-light.svg new file mode 100644 index 0000000..63369b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-teardrop-text-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chat-text-light.svg b/phosphor_orig/SVGs Flat/light/chat-text-light.svg new file mode 100644 index 0000000..d52355b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chat-text-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chats-circle-light.svg b/phosphor_orig/SVGs Flat/light/chats-circle-light.svg new file mode 100644 index 0000000..ceb9255 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chats-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chats-light.svg b/phosphor_orig/SVGs Flat/light/chats-light.svg new file mode 100644 index 0000000..2d4b34c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chats-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chats-teardrop-light.svg b/phosphor_orig/SVGs Flat/light/chats-teardrop-light.svg new file mode 100644 index 0000000..a0c666a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chats-teardrop-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/check-circle-light.svg b/phosphor_orig/SVGs Flat/light/check-circle-light.svg new file mode 100644 index 0000000..f1d4f11 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/check-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/check-fat-light.svg b/phosphor_orig/SVGs Flat/light/check-fat-light.svg new file mode 100644 index 0000000..ade03c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/check-fat-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/check-light.svg b/phosphor_orig/SVGs Flat/light/check-light.svg new file mode 100644 index 0000000..39f08cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/check-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/check-square-light.svg b/phosphor_orig/SVGs Flat/light/check-square-light.svg new file mode 100644 index 0000000..0cfec06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/check-square-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/check-square-offset-light.svg b/phosphor_orig/SVGs Flat/light/check-square-offset-light.svg new file mode 100644 index 0000000..ca9cdc8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/check-square-offset-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/checkerboard-light.svg b/phosphor_orig/SVGs Flat/light/checkerboard-light.svg new file mode 100644 index 0000000..e831d5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/checkerboard-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/checks-light.svg b/phosphor_orig/SVGs Flat/light/checks-light.svg new file mode 100644 index 0000000..bad2497 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/checks-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cheers-light.svg b/phosphor_orig/SVGs Flat/light/cheers-light.svg new file mode 100644 index 0000000..168ac5b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cheers-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cheese-light.svg b/phosphor_orig/SVGs Flat/light/cheese-light.svg new file mode 100644 index 0000000..df86655 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cheese-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/chef-hat-light.svg b/phosphor_orig/SVGs Flat/light/chef-hat-light.svg new file mode 100644 index 0000000..b207f9d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/chef-hat-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cherries-light.svg b/phosphor_orig/SVGs Flat/light/cherries-light.svg new file mode 100644 index 0000000..e5eadea --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cherries-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/church-light.svg b/phosphor_orig/SVGs Flat/light/church-light.svg new file mode 100644 index 0000000..5e439c3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/church-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cigarette-light.svg b/phosphor_orig/SVGs Flat/light/cigarette-light.svg new file mode 100644 index 0000000..65e9e6d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cigarette-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cigarette-slash-light.svg b/phosphor_orig/SVGs Flat/light/cigarette-slash-light.svg new file mode 100644 index 0000000..09e3907 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cigarette-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/circle-dashed-light.svg b/phosphor_orig/SVGs Flat/light/circle-dashed-light.svg new file mode 100644 index 0000000..d683cf0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/circle-dashed-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/circle-half-light.svg b/phosphor_orig/SVGs Flat/light/circle-half-light.svg new file mode 100644 index 0000000..2e09265 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/circle-half-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/circle-half-tilt-light.svg b/phosphor_orig/SVGs Flat/light/circle-half-tilt-light.svg new file mode 100644 index 0000000..21d67dd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/circle-half-tilt-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/circle-light.svg b/phosphor_orig/SVGs Flat/light/circle-light.svg new file mode 100644 index 0000000..576bce4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/circle-notch-light.svg b/phosphor_orig/SVGs Flat/light/circle-notch-light.svg new file mode 100644 index 0000000..c3a32f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/circle-notch-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/circles-four-light.svg b/phosphor_orig/SVGs Flat/light/circles-four-light.svg new file mode 100644 index 0000000..618221c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/circles-four-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/circles-three-light.svg b/phosphor_orig/SVGs Flat/light/circles-three-light.svg new file mode 100644 index 0000000..e06ed5a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/circles-three-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/circles-three-plus-light.svg b/phosphor_orig/SVGs Flat/light/circles-three-plus-light.svg new file mode 100644 index 0000000..98ca679 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/circles-three-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/circuitry-light.svg b/phosphor_orig/SVGs Flat/light/circuitry-light.svg new file mode 100644 index 0000000..d8474f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/circuitry-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/city-light.svg b/phosphor_orig/SVGs Flat/light/city-light.svg new file mode 100644 index 0000000..6b1d092 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/city-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/clipboard-light.svg b/phosphor_orig/SVGs Flat/light/clipboard-light.svg new file mode 100644 index 0000000..56668e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/clipboard-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/clipboard-text-light.svg b/phosphor_orig/SVGs Flat/light/clipboard-text-light.svg new file mode 100644 index 0000000..fd90449 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/clipboard-text-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/clock-afternoon-light.svg b/phosphor_orig/SVGs Flat/light/clock-afternoon-light.svg new file mode 100644 index 0000000..28ae112 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/clock-afternoon-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/clock-clockwise-light.svg b/phosphor_orig/SVGs Flat/light/clock-clockwise-light.svg new file mode 100644 index 0000000..50dc14c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/clock-clockwise-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/clock-countdown-light.svg b/phosphor_orig/SVGs Flat/light/clock-countdown-light.svg new file mode 100644 index 0000000..47cedf4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/clock-countdown-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/clock-counter-clockwise-light.svg b/phosphor_orig/SVGs Flat/light/clock-counter-clockwise-light.svg new file mode 100644 index 0000000..5af170d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/clock-counter-clockwise-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/clock-light.svg b/phosphor_orig/SVGs Flat/light/clock-light.svg new file mode 100644 index 0000000..12b1153 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/clock-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/clock-user-light.svg b/phosphor_orig/SVGs Flat/light/clock-user-light.svg new file mode 100644 index 0000000..637145d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/clock-user-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/closed-captioning-light.svg b/phosphor_orig/SVGs Flat/light/closed-captioning-light.svg new file mode 100644 index 0000000..8d7cffb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/closed-captioning-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cloud-arrow-down-light.svg b/phosphor_orig/SVGs Flat/light/cloud-arrow-down-light.svg new file mode 100644 index 0000000..c4fca3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cloud-arrow-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cloud-arrow-up-light.svg b/phosphor_orig/SVGs Flat/light/cloud-arrow-up-light.svg new file mode 100644 index 0000000..2bc3dae --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cloud-arrow-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cloud-check-light.svg b/phosphor_orig/SVGs Flat/light/cloud-check-light.svg new file mode 100644 index 0000000..2622c73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cloud-check-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cloud-fog-light.svg b/phosphor_orig/SVGs Flat/light/cloud-fog-light.svg new file mode 100644 index 0000000..ff6ea0f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cloud-fog-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cloud-light.svg b/phosphor_orig/SVGs Flat/light/cloud-light.svg new file mode 100644 index 0000000..62fa102 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cloud-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cloud-lightning-light.svg b/phosphor_orig/SVGs Flat/light/cloud-lightning-light.svg new file mode 100644 index 0000000..3468873 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cloud-lightning-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cloud-moon-light.svg b/phosphor_orig/SVGs Flat/light/cloud-moon-light.svg new file mode 100644 index 0000000..e8263ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cloud-moon-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cloud-rain-light.svg b/phosphor_orig/SVGs Flat/light/cloud-rain-light.svg new file mode 100644 index 0000000..33c0e60 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cloud-rain-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cloud-slash-light.svg b/phosphor_orig/SVGs Flat/light/cloud-slash-light.svg new file mode 100644 index 0000000..7e44c8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cloud-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cloud-snow-light.svg b/phosphor_orig/SVGs Flat/light/cloud-snow-light.svg new file mode 100644 index 0000000..4391d10 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cloud-snow-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cloud-sun-light.svg b/phosphor_orig/SVGs Flat/light/cloud-sun-light.svg new file mode 100644 index 0000000..1aaef86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cloud-sun-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cloud-warning-light.svg b/phosphor_orig/SVGs Flat/light/cloud-warning-light.svg new file mode 100644 index 0000000..60c3b8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cloud-warning-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cloud-x-light.svg b/phosphor_orig/SVGs Flat/light/cloud-x-light.svg new file mode 100644 index 0000000..4967de7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cloud-x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/clover-light.svg b/phosphor_orig/SVGs Flat/light/clover-light.svg new file mode 100644 index 0000000..740b8ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/clover-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/club-light.svg b/phosphor_orig/SVGs Flat/light/club-light.svg new file mode 100644 index 0000000..bfe4166 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/club-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/coat-hanger-light.svg b/phosphor_orig/SVGs Flat/light/coat-hanger-light.svg new file mode 100644 index 0000000..307b676 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/coat-hanger-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/coda-logo-light.svg b/phosphor_orig/SVGs Flat/light/coda-logo-light.svg new file mode 100644 index 0000000..3aa00ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/coda-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/code-block-light.svg b/phosphor_orig/SVGs Flat/light/code-block-light.svg new file mode 100644 index 0000000..f676bba --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/code-block-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/code-light.svg b/phosphor_orig/SVGs Flat/light/code-light.svg new file mode 100644 index 0000000..59f192a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/code-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/code-simple-light.svg b/phosphor_orig/SVGs Flat/light/code-simple-light.svg new file mode 100644 index 0000000..dd7cd08 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/code-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/codepen-logo-light.svg b/phosphor_orig/SVGs Flat/light/codepen-logo-light.svg new file mode 100644 index 0000000..a601643 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/codepen-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/codesandbox-logo-light.svg b/phosphor_orig/SVGs Flat/light/codesandbox-logo-light.svg new file mode 100644 index 0000000..169ea0f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/codesandbox-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/coffee-bean-light.svg b/phosphor_orig/SVGs Flat/light/coffee-bean-light.svg new file mode 100644 index 0000000..7a1fd36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/coffee-bean-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/coffee-light.svg b/phosphor_orig/SVGs Flat/light/coffee-light.svg new file mode 100644 index 0000000..6c4067f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/coffee-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/coin-light.svg b/phosphor_orig/SVGs Flat/light/coin-light.svg new file mode 100644 index 0000000..e06ed46 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/coin-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/coin-vertical-light.svg b/phosphor_orig/SVGs Flat/light/coin-vertical-light.svg new file mode 100644 index 0000000..111e387 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/coin-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/coins-light.svg b/phosphor_orig/SVGs Flat/light/coins-light.svg new file mode 100644 index 0000000..5ae88a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/coins-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/columns-light.svg b/phosphor_orig/SVGs Flat/light/columns-light.svg new file mode 100644 index 0000000..d3f712f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/columns-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/columns-plus-left-light.svg b/phosphor_orig/SVGs Flat/light/columns-plus-left-light.svg new file mode 100644 index 0000000..9455871 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/columns-plus-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/columns-plus-right-light.svg b/phosphor_orig/SVGs Flat/light/columns-plus-right-light.svg new file mode 100644 index 0000000..45391f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/columns-plus-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/command-light.svg b/phosphor_orig/SVGs Flat/light/command-light.svg new file mode 100644 index 0000000..a21d9b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/command-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/compass-light.svg b/phosphor_orig/SVGs Flat/light/compass-light.svg new file mode 100644 index 0000000..f5ee9d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/compass-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/compass-rose-light.svg b/phosphor_orig/SVGs Flat/light/compass-rose-light.svg new file mode 100644 index 0000000..46923cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/compass-rose-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/compass-tool-light.svg b/phosphor_orig/SVGs Flat/light/compass-tool-light.svg new file mode 100644 index 0000000..c004a89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/compass-tool-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/computer-tower-light.svg b/phosphor_orig/SVGs Flat/light/computer-tower-light.svg new file mode 100644 index 0000000..6ed5d93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/computer-tower-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/confetti-light.svg b/phosphor_orig/SVGs Flat/light/confetti-light.svg new file mode 100644 index 0000000..0d7ba1d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/confetti-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/contactless-payment-light.svg b/phosphor_orig/SVGs Flat/light/contactless-payment-light.svg new file mode 100644 index 0000000..1e373fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/contactless-payment-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/control-light.svg b/phosphor_orig/SVGs Flat/light/control-light.svg new file mode 100644 index 0000000..a3b2a4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/control-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cookie-light.svg b/phosphor_orig/SVGs Flat/light/cookie-light.svg new file mode 100644 index 0000000..13440c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cookie-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cooking-pot-light.svg b/phosphor_orig/SVGs Flat/light/cooking-pot-light.svg new file mode 100644 index 0000000..3e4a424 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cooking-pot-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/copy-light.svg b/phosphor_orig/SVGs Flat/light/copy-light.svg new file mode 100644 index 0000000..92c7258 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/copy-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/copy-simple-light.svg b/phosphor_orig/SVGs Flat/light/copy-simple-light.svg new file mode 100644 index 0000000..ae02885 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/copy-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/copyleft-light.svg b/phosphor_orig/SVGs Flat/light/copyleft-light.svg new file mode 100644 index 0000000..b8989ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/copyleft-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/copyright-light.svg b/phosphor_orig/SVGs Flat/light/copyright-light.svg new file mode 100644 index 0000000..8dcb9a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/copyright-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/corners-in-light.svg b/phosphor_orig/SVGs Flat/light/corners-in-light.svg new file mode 100644 index 0000000..180dcdb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/corners-in-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/corners-out-light.svg b/phosphor_orig/SVGs Flat/light/corners-out-light.svg new file mode 100644 index 0000000..84f4b13 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/corners-out-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/couch-light.svg b/phosphor_orig/SVGs Flat/light/couch-light.svg new file mode 100644 index 0000000..e8d3af4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/couch-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/court-basketball-light.svg b/phosphor_orig/SVGs Flat/light/court-basketball-light.svg new file mode 100644 index 0000000..50d90d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/court-basketball-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cow-light.svg b/phosphor_orig/SVGs Flat/light/cow-light.svg new file mode 100644 index 0000000..ba83d36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cow-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cowboy-hat-light.svg b/phosphor_orig/SVGs Flat/light/cowboy-hat-light.svg new file mode 100644 index 0000000..fe0e474 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cowboy-hat-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cpu-light.svg b/phosphor_orig/SVGs Flat/light/cpu-light.svg new file mode 100644 index 0000000..5bf9468 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cpu-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/crane-light.svg b/phosphor_orig/SVGs Flat/light/crane-light.svg new file mode 100644 index 0000000..cd8ebb0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/crane-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/crane-tower-light.svg b/phosphor_orig/SVGs Flat/light/crane-tower-light.svg new file mode 100644 index 0000000..df0eeba --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/crane-tower-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/credit-card-light.svg b/phosphor_orig/SVGs Flat/light/credit-card-light.svg new file mode 100644 index 0000000..42773d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/credit-card-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cricket-light.svg b/phosphor_orig/SVGs Flat/light/cricket-light.svg new file mode 100644 index 0000000..b20e4d6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cricket-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/crop-light.svg b/phosphor_orig/SVGs Flat/light/crop-light.svg new file mode 100644 index 0000000..bc16aee --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/crop-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cross-light.svg b/phosphor_orig/SVGs Flat/light/cross-light.svg new file mode 100644 index 0000000..d6d91eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cross-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/crosshair-light.svg b/phosphor_orig/SVGs Flat/light/crosshair-light.svg new file mode 100644 index 0000000..9d9e3e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/crosshair-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/crosshair-simple-light.svg b/phosphor_orig/SVGs Flat/light/crosshair-simple-light.svg new file mode 100644 index 0000000..768aa4c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/crosshair-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/crown-cross-light.svg b/phosphor_orig/SVGs Flat/light/crown-cross-light.svg new file mode 100644 index 0000000..0805d29 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/crown-cross-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/crown-light.svg b/phosphor_orig/SVGs Flat/light/crown-light.svg new file mode 100644 index 0000000..d3f36b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/crown-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/crown-simple-light.svg b/phosphor_orig/SVGs Flat/light/crown-simple-light.svg new file mode 100644 index 0000000..0e9eca1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/crown-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cube-focus-light.svg b/phosphor_orig/SVGs Flat/light/cube-focus-light.svg new file mode 100644 index 0000000..f464c76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cube-focus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cube-light.svg b/phosphor_orig/SVGs Flat/light/cube-light.svg new file mode 100644 index 0000000..6e312c3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cube-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cube-transparent-light.svg b/phosphor_orig/SVGs Flat/light/cube-transparent-light.svg new file mode 100644 index 0000000..3797df3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cube-transparent-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/currency-btc-light.svg b/phosphor_orig/SVGs Flat/light/currency-btc-light.svg new file mode 100644 index 0000000..536c762 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/currency-btc-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/currency-circle-dollar-light.svg b/phosphor_orig/SVGs Flat/light/currency-circle-dollar-light.svg new file mode 100644 index 0000000..b2b2195 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/currency-circle-dollar-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/currency-cny-light.svg b/phosphor_orig/SVGs Flat/light/currency-cny-light.svg new file mode 100644 index 0000000..bfa16da --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/currency-cny-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/currency-dollar-light.svg b/phosphor_orig/SVGs Flat/light/currency-dollar-light.svg new file mode 100644 index 0000000..a0199d6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/currency-dollar-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/currency-dollar-simple-light.svg b/phosphor_orig/SVGs Flat/light/currency-dollar-simple-light.svg new file mode 100644 index 0000000..a182e63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/currency-dollar-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/currency-eth-light.svg b/phosphor_orig/SVGs Flat/light/currency-eth-light.svg new file mode 100644 index 0000000..d982c26 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/currency-eth-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/currency-eur-light.svg b/phosphor_orig/SVGs Flat/light/currency-eur-light.svg new file mode 100644 index 0000000..6c6c80c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/currency-eur-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/currency-gbp-light.svg b/phosphor_orig/SVGs Flat/light/currency-gbp-light.svg new file mode 100644 index 0000000..2fe91fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/currency-gbp-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/currency-inr-light.svg b/phosphor_orig/SVGs Flat/light/currency-inr-light.svg new file mode 100644 index 0000000..ddcce67 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/currency-inr-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/currency-jpy-light.svg b/phosphor_orig/SVGs Flat/light/currency-jpy-light.svg new file mode 100644 index 0000000..928f891 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/currency-jpy-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/currency-krw-light.svg b/phosphor_orig/SVGs Flat/light/currency-krw-light.svg new file mode 100644 index 0000000..484dcdd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/currency-krw-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/currency-kzt-light.svg b/phosphor_orig/SVGs Flat/light/currency-kzt-light.svg new file mode 100644 index 0000000..bc3aaa2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/currency-kzt-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/currency-ngn-light.svg b/phosphor_orig/SVGs Flat/light/currency-ngn-light.svg new file mode 100644 index 0000000..13cabba --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/currency-ngn-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/currency-rub-light.svg b/phosphor_orig/SVGs Flat/light/currency-rub-light.svg new file mode 100644 index 0000000..8fd1f99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/currency-rub-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cursor-click-light.svg b/phosphor_orig/SVGs Flat/light/cursor-click-light.svg new file mode 100644 index 0000000..64904d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cursor-click-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cursor-light.svg b/phosphor_orig/SVGs Flat/light/cursor-light.svg new file mode 100644 index 0000000..5ccaf98 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cursor-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cursor-text-light.svg b/phosphor_orig/SVGs Flat/light/cursor-text-light.svg new file mode 100644 index 0000000..f977d82 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cursor-text-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/cylinder-light.svg b/phosphor_orig/SVGs Flat/light/cylinder-light.svg new file mode 100644 index 0000000..5ca3fe7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/cylinder-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/database-light.svg b/phosphor_orig/SVGs Flat/light/database-light.svg new file mode 100644 index 0000000..02274eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/database-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/desk-light.svg b/phosphor_orig/SVGs Flat/light/desk-light.svg new file mode 100644 index 0000000..690489f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/desk-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/desktop-light.svg b/phosphor_orig/SVGs Flat/light/desktop-light.svg new file mode 100644 index 0000000..72bd266 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/desktop-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/desktop-tower-light.svg b/phosphor_orig/SVGs Flat/light/desktop-tower-light.svg new file mode 100644 index 0000000..39663e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/desktop-tower-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/detective-light.svg b/phosphor_orig/SVGs Flat/light/detective-light.svg new file mode 100644 index 0000000..e3c5ae4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/detective-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dev-to-logo-light.svg b/phosphor_orig/SVGs Flat/light/dev-to-logo-light.svg new file mode 100644 index 0000000..d7ab606 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dev-to-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/device-mobile-camera-light.svg b/phosphor_orig/SVGs Flat/light/device-mobile-camera-light.svg new file mode 100644 index 0000000..1a4c060 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/device-mobile-camera-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/device-mobile-light.svg b/phosphor_orig/SVGs Flat/light/device-mobile-light.svg new file mode 100644 index 0000000..2883289 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/device-mobile-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/device-mobile-slash-light.svg b/phosphor_orig/SVGs Flat/light/device-mobile-slash-light.svg new file mode 100644 index 0000000..347e3b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/device-mobile-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/device-mobile-speaker-light.svg b/phosphor_orig/SVGs Flat/light/device-mobile-speaker-light.svg new file mode 100644 index 0000000..e0313b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/device-mobile-speaker-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/device-rotate-light.svg b/phosphor_orig/SVGs Flat/light/device-rotate-light.svg new file mode 100644 index 0000000..cf956c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/device-rotate-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/device-tablet-camera-light.svg b/phosphor_orig/SVGs Flat/light/device-tablet-camera-light.svg new file mode 100644 index 0000000..19bcddc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/device-tablet-camera-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/device-tablet-light.svg b/phosphor_orig/SVGs Flat/light/device-tablet-light.svg new file mode 100644 index 0000000..c1f68d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/device-tablet-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/device-tablet-speaker-light.svg b/phosphor_orig/SVGs Flat/light/device-tablet-speaker-light.svg new file mode 100644 index 0000000..47ee1ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/device-tablet-speaker-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/devices-light.svg b/phosphor_orig/SVGs Flat/light/devices-light.svg new file mode 100644 index 0000000..465ae9a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/devices-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/diamond-light.svg b/phosphor_orig/SVGs Flat/light/diamond-light.svg new file mode 100644 index 0000000..309aa7e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/diamond-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/diamonds-four-light.svg b/phosphor_orig/SVGs Flat/light/diamonds-four-light.svg new file mode 100644 index 0000000..539df2a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/diamonds-four-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dice-five-light.svg b/phosphor_orig/SVGs Flat/light/dice-five-light.svg new file mode 100644 index 0000000..9e635b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dice-five-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dice-four-light.svg b/phosphor_orig/SVGs Flat/light/dice-four-light.svg new file mode 100644 index 0000000..f2b7d1c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dice-four-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dice-one-light.svg b/phosphor_orig/SVGs Flat/light/dice-one-light.svg new file mode 100644 index 0000000..651b0b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dice-one-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dice-six-light.svg b/phosphor_orig/SVGs Flat/light/dice-six-light.svg new file mode 100644 index 0000000..144c97c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dice-six-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dice-three-light.svg b/phosphor_orig/SVGs Flat/light/dice-three-light.svg new file mode 100644 index 0000000..07c8caa --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dice-three-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dice-two-light.svg b/phosphor_orig/SVGs Flat/light/dice-two-light.svg new file mode 100644 index 0000000..e5c3d8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dice-two-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/disc-light.svg b/phosphor_orig/SVGs Flat/light/disc-light.svg new file mode 100644 index 0000000..20735e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/disc-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/disco-ball-light.svg b/phosphor_orig/SVGs Flat/light/disco-ball-light.svg new file mode 100644 index 0000000..1c2538a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/disco-ball-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/discord-logo-light.svg b/phosphor_orig/SVGs Flat/light/discord-logo-light.svg new file mode 100644 index 0000000..abcf2fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/discord-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/divide-light.svg b/phosphor_orig/SVGs Flat/light/divide-light.svg new file mode 100644 index 0000000..d2f0520 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/divide-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dna-light.svg b/phosphor_orig/SVGs Flat/light/dna-light.svg new file mode 100644 index 0000000..a5383dd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dna-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dog-light.svg b/phosphor_orig/SVGs Flat/light/dog-light.svg new file mode 100644 index 0000000..7faff0e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dog-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/door-light.svg b/phosphor_orig/SVGs Flat/light/door-light.svg new file mode 100644 index 0000000..cb1abfd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/door-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/door-open-light.svg b/phosphor_orig/SVGs Flat/light/door-open-light.svg new file mode 100644 index 0000000..f82d973 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/door-open-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dot-light.svg b/phosphor_orig/SVGs Flat/light/dot-light.svg new file mode 100644 index 0000000..e18042d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dot-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dot-outline-light.svg b/phosphor_orig/SVGs Flat/light/dot-outline-light.svg new file mode 100644 index 0000000..1b256c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dot-outline-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dots-nine-light.svg b/phosphor_orig/SVGs Flat/light/dots-nine-light.svg new file mode 100644 index 0000000..8743b77 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dots-nine-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dots-six-light.svg b/phosphor_orig/SVGs Flat/light/dots-six-light.svg new file mode 100644 index 0000000..52824ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dots-six-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dots-six-vertical-light.svg b/phosphor_orig/SVGs Flat/light/dots-six-vertical-light.svg new file mode 100644 index 0000000..d85ba53 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dots-six-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dots-three-circle-light.svg b/phosphor_orig/SVGs Flat/light/dots-three-circle-light.svg new file mode 100644 index 0000000..4c123e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dots-three-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dots-three-circle-vertical-light.svg b/phosphor_orig/SVGs Flat/light/dots-three-circle-vertical-light.svg new file mode 100644 index 0000000..6f2ad4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dots-three-circle-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dots-three-light.svg b/phosphor_orig/SVGs Flat/light/dots-three-light.svg new file mode 100644 index 0000000..853bba8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dots-three-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dots-three-outline-light.svg b/phosphor_orig/SVGs Flat/light/dots-three-outline-light.svg new file mode 100644 index 0000000..7e21c5b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dots-three-outline-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dots-three-outline-vertical-light.svg b/phosphor_orig/SVGs Flat/light/dots-three-outline-vertical-light.svg new file mode 100644 index 0000000..5381f15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dots-three-outline-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dots-three-vertical-light.svg b/phosphor_orig/SVGs Flat/light/dots-three-vertical-light.svg new file mode 100644 index 0000000..5f62ec2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dots-three-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/download-light.svg b/phosphor_orig/SVGs Flat/light/download-light.svg new file mode 100644 index 0000000..879e46b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/download-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/download-simple-light.svg b/phosphor_orig/SVGs Flat/light/download-simple-light.svg new file mode 100644 index 0000000..3671a84 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/download-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dress-light.svg b/phosphor_orig/SVGs Flat/light/dress-light.svg new file mode 100644 index 0000000..14cb5e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dress-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dresser-light.svg b/phosphor_orig/SVGs Flat/light/dresser-light.svg new file mode 100644 index 0000000..82420b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dresser-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dribbble-logo-light.svg b/phosphor_orig/SVGs Flat/light/dribbble-logo-light.svg new file mode 100644 index 0000000..41ed26e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dribbble-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/drone-light.svg b/phosphor_orig/SVGs Flat/light/drone-light.svg new file mode 100644 index 0000000..fca745a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/drone-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/drop-half-bottom-light.svg b/phosphor_orig/SVGs Flat/light/drop-half-bottom-light.svg new file mode 100644 index 0000000..381a291 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/drop-half-bottom-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/drop-half-light.svg b/phosphor_orig/SVGs Flat/light/drop-half-light.svg new file mode 100644 index 0000000..5705976 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/drop-half-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/drop-light.svg b/phosphor_orig/SVGs Flat/light/drop-light.svg new file mode 100644 index 0000000..7392d98 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/drop-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/drop-simple-light.svg b/phosphor_orig/SVGs Flat/light/drop-simple-light.svg new file mode 100644 index 0000000..9762331 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/drop-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/drop-slash-light.svg b/phosphor_orig/SVGs Flat/light/drop-slash-light.svg new file mode 100644 index 0000000..8144580 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/drop-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/dropbox-logo-light.svg b/phosphor_orig/SVGs Flat/light/dropbox-logo-light.svg new file mode 100644 index 0000000..92a342a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/dropbox-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/ear-light.svg b/phosphor_orig/SVGs Flat/light/ear-light.svg new file mode 100644 index 0000000..25e988a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/ear-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/ear-slash-light.svg b/phosphor_orig/SVGs Flat/light/ear-slash-light.svg new file mode 100644 index 0000000..c5b66ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/ear-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/egg-crack-light.svg b/phosphor_orig/SVGs Flat/light/egg-crack-light.svg new file mode 100644 index 0000000..c7d8782 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/egg-crack-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/egg-light.svg b/phosphor_orig/SVGs Flat/light/egg-light.svg new file mode 100644 index 0000000..fe9edbf --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/egg-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/eject-light.svg b/phosphor_orig/SVGs Flat/light/eject-light.svg new file mode 100644 index 0000000..4efe064 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/eject-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/eject-simple-light.svg b/phosphor_orig/SVGs Flat/light/eject-simple-light.svg new file mode 100644 index 0000000..397f2ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/eject-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/elevator-light.svg b/phosphor_orig/SVGs Flat/light/elevator-light.svg new file mode 100644 index 0000000..6fd4bb6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/elevator-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/empty-light.svg b/phosphor_orig/SVGs Flat/light/empty-light.svg new file mode 100644 index 0000000..6755563 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/empty-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/engine-light.svg b/phosphor_orig/SVGs Flat/light/engine-light.svg new file mode 100644 index 0000000..dfc6bc2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/engine-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/envelope-light.svg b/phosphor_orig/SVGs Flat/light/envelope-light.svg new file mode 100644 index 0000000..d5273da --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/envelope-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/envelope-open-light.svg b/phosphor_orig/SVGs Flat/light/envelope-open-light.svg new file mode 100644 index 0000000..3c41787 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/envelope-open-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/envelope-simple-light.svg b/phosphor_orig/SVGs Flat/light/envelope-simple-light.svg new file mode 100644 index 0000000..1450f86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/envelope-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/envelope-simple-open-light.svg b/phosphor_orig/SVGs Flat/light/envelope-simple-open-light.svg new file mode 100644 index 0000000..8f716a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/envelope-simple-open-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/equalizer-light.svg b/phosphor_orig/SVGs Flat/light/equalizer-light.svg new file mode 100644 index 0000000..865b4c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/equalizer-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/equals-light.svg b/phosphor_orig/SVGs Flat/light/equals-light.svg new file mode 100644 index 0000000..f3cde7b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/equals-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/eraser-light.svg b/phosphor_orig/SVGs Flat/light/eraser-light.svg new file mode 100644 index 0000000..c81235d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/eraser-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/escalator-down-light.svg b/phosphor_orig/SVGs Flat/light/escalator-down-light.svg new file mode 100644 index 0000000..b39ee3c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/escalator-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/escalator-up-light.svg b/phosphor_orig/SVGs Flat/light/escalator-up-light.svg new file mode 100644 index 0000000..4387cc0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/escalator-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/exam-light.svg b/phosphor_orig/SVGs Flat/light/exam-light.svg new file mode 100644 index 0000000..1ac2341 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/exam-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/exclamation-mark-light.svg b/phosphor_orig/SVGs Flat/light/exclamation-mark-light.svg new file mode 100644 index 0000000..6ef1ef1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/exclamation-mark-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/exclude-light.svg b/phosphor_orig/SVGs Flat/light/exclude-light.svg new file mode 100644 index 0000000..e98a320 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/exclude-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/exclude-square-light.svg b/phosphor_orig/SVGs Flat/light/exclude-square-light.svg new file mode 100644 index 0000000..1ed2124 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/exclude-square-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/export-light.svg b/phosphor_orig/SVGs Flat/light/export-light.svg new file mode 100644 index 0000000..184be73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/export-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/eye-closed-light.svg b/phosphor_orig/SVGs Flat/light/eye-closed-light.svg new file mode 100644 index 0000000..74bffc3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/eye-closed-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/eye-light.svg b/phosphor_orig/SVGs Flat/light/eye-light.svg new file mode 100644 index 0000000..c00294b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/eye-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/eye-slash-light.svg b/phosphor_orig/SVGs Flat/light/eye-slash-light.svg new file mode 100644 index 0000000..83c9f15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/eye-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/eyedropper-light.svg b/phosphor_orig/SVGs Flat/light/eyedropper-light.svg new file mode 100644 index 0000000..efc3f3f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/eyedropper-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/eyedropper-sample-light.svg b/phosphor_orig/SVGs Flat/light/eyedropper-sample-light.svg new file mode 100644 index 0000000..aa27040 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/eyedropper-sample-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/eyeglasses-light.svg b/phosphor_orig/SVGs Flat/light/eyeglasses-light.svg new file mode 100644 index 0000000..db14d62 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/eyeglasses-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/eyes-light.svg b/phosphor_orig/SVGs Flat/light/eyes-light.svg new file mode 100644 index 0000000..ea22a5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/eyes-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/face-mask-light.svg b/phosphor_orig/SVGs Flat/light/face-mask-light.svg new file mode 100644 index 0000000..7338ada --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/face-mask-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/facebook-logo-light.svg b/phosphor_orig/SVGs Flat/light/facebook-logo-light.svg new file mode 100644 index 0000000..79581f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/facebook-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/factory-light.svg b/phosphor_orig/SVGs Flat/light/factory-light.svg new file mode 100644 index 0000000..81d3825 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/factory-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/faders-horizontal-light.svg b/phosphor_orig/SVGs Flat/light/faders-horizontal-light.svg new file mode 100644 index 0000000..3b379bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/faders-horizontal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/faders-light.svg b/phosphor_orig/SVGs Flat/light/faders-light.svg new file mode 100644 index 0000000..f7f30ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/faders-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/fallout-shelter-light.svg b/phosphor_orig/SVGs Flat/light/fallout-shelter-light.svg new file mode 100644 index 0000000..228efd9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/fallout-shelter-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/fan-light.svg b/phosphor_orig/SVGs Flat/light/fan-light.svg new file mode 100644 index 0000000..c712820 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/fan-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/farm-light.svg b/phosphor_orig/SVGs Flat/light/farm-light.svg new file mode 100644 index 0000000..efeae3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/farm-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/fast-forward-circle-light.svg b/phosphor_orig/SVGs Flat/light/fast-forward-circle-light.svg new file mode 100644 index 0000000..a47c3f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/fast-forward-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/fast-forward-light.svg b/phosphor_orig/SVGs Flat/light/fast-forward-light.svg new file mode 100644 index 0000000..ea9e9eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/fast-forward-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/feather-light.svg b/phosphor_orig/SVGs Flat/light/feather-light.svg new file mode 100644 index 0000000..4761576 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/feather-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/fediverse-logo-light.svg b/phosphor_orig/SVGs Flat/light/fediverse-logo-light.svg new file mode 100644 index 0000000..56c2ad7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/fediverse-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/figma-logo-light.svg b/phosphor_orig/SVGs Flat/light/figma-logo-light.svg new file mode 100644 index 0000000..f4cf1b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/figma-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-archive-light.svg b/phosphor_orig/SVGs Flat/light/file-archive-light.svg new file mode 100644 index 0000000..1ead54c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-archive-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-arrow-down-light.svg b/phosphor_orig/SVGs Flat/light/file-arrow-down-light.svg new file mode 100644 index 0000000..58f973c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-arrow-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-arrow-up-light.svg b/phosphor_orig/SVGs Flat/light/file-arrow-up-light.svg new file mode 100644 index 0000000..fd29838 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-arrow-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-audio-light.svg b/phosphor_orig/SVGs Flat/light/file-audio-light.svg new file mode 100644 index 0000000..1ef05bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-audio-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-c-light.svg b/phosphor_orig/SVGs Flat/light/file-c-light.svg new file mode 100644 index 0000000..c6b853e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-c-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-c-sharp-light.svg b/phosphor_orig/SVGs Flat/light/file-c-sharp-light.svg new file mode 100644 index 0000000..1468e02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-c-sharp-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-cloud-light.svg b/phosphor_orig/SVGs Flat/light/file-cloud-light.svg new file mode 100644 index 0000000..ed56f85 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-cloud-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-code-light.svg b/phosphor_orig/SVGs Flat/light/file-code-light.svg new file mode 100644 index 0000000..2686af9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-code-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-cpp-light.svg b/phosphor_orig/SVGs Flat/light/file-cpp-light.svg new file mode 100644 index 0000000..09494a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-cpp-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-css-light.svg b/phosphor_orig/SVGs Flat/light/file-css-light.svg new file mode 100644 index 0000000..8428faa --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-css-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-csv-light.svg b/phosphor_orig/SVGs Flat/light/file-csv-light.svg new file mode 100644 index 0000000..c5660fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-csv-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-dashed-light.svg b/phosphor_orig/SVGs Flat/light/file-dashed-light.svg new file mode 100644 index 0000000..6aa82d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-dashed-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-doc-light.svg b/phosphor_orig/SVGs Flat/light/file-doc-light.svg new file mode 100644 index 0000000..8e13bed --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-doc-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-html-light.svg b/phosphor_orig/SVGs Flat/light/file-html-light.svg new file mode 100644 index 0000000..918e8e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-html-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-image-light.svg b/phosphor_orig/SVGs Flat/light/file-image-light.svg new file mode 100644 index 0000000..ae7b7ff --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-image-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-ini-light.svg b/phosphor_orig/SVGs Flat/light/file-ini-light.svg new file mode 100644 index 0000000..1768667 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-ini-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-jpg-light.svg b/phosphor_orig/SVGs Flat/light/file-jpg-light.svg new file mode 100644 index 0000000..dceae3d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-jpg-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-js-light.svg b/phosphor_orig/SVGs Flat/light/file-js-light.svg new file mode 100644 index 0000000..4e3c63a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-js-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-jsx-light.svg b/phosphor_orig/SVGs Flat/light/file-jsx-light.svg new file mode 100644 index 0000000..4a77578 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-jsx-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-light.svg b/phosphor_orig/SVGs Flat/light/file-light.svg new file mode 100644 index 0000000..bb69edf --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-lock-light.svg b/phosphor_orig/SVGs Flat/light/file-lock-light.svg new file mode 100644 index 0000000..6af23b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-lock-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-magnifying-glass-light.svg b/phosphor_orig/SVGs Flat/light/file-magnifying-glass-light.svg new file mode 100644 index 0000000..c8b895e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-magnifying-glass-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-md-light.svg b/phosphor_orig/SVGs Flat/light/file-md-light.svg new file mode 100644 index 0000000..a4c1152 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-md-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-minus-light.svg b/phosphor_orig/SVGs Flat/light/file-minus-light.svg new file mode 100644 index 0000000..c7a813a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-minus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-pdf-light.svg b/phosphor_orig/SVGs Flat/light/file-pdf-light.svg new file mode 100644 index 0000000..c6e60e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-pdf-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-plus-light.svg b/phosphor_orig/SVGs Flat/light/file-plus-light.svg new file mode 100644 index 0000000..75873de --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-png-light.svg b/phosphor_orig/SVGs Flat/light/file-png-light.svg new file mode 100644 index 0000000..aab5790 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-png-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-ppt-light.svg b/phosphor_orig/SVGs Flat/light/file-ppt-light.svg new file mode 100644 index 0000000..91e7eda --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-ppt-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-py-light.svg b/phosphor_orig/SVGs Flat/light/file-py-light.svg new file mode 100644 index 0000000..523d6d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-py-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-rs-light.svg b/phosphor_orig/SVGs Flat/light/file-rs-light.svg new file mode 100644 index 0000000..ab7e4db --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-rs-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-sql-light.svg b/phosphor_orig/SVGs Flat/light/file-sql-light.svg new file mode 100644 index 0000000..9f4099b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-sql-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-svg-light.svg b/phosphor_orig/SVGs Flat/light/file-svg-light.svg new file mode 100644 index 0000000..373672f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-svg-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-text-light.svg b/phosphor_orig/SVGs Flat/light/file-text-light.svg new file mode 100644 index 0000000..fedea9a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-text-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-ts-light.svg b/phosphor_orig/SVGs Flat/light/file-ts-light.svg new file mode 100644 index 0000000..2a8505c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-ts-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-tsx-light.svg b/phosphor_orig/SVGs Flat/light/file-tsx-light.svg new file mode 100644 index 0000000..a61cd05 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-tsx-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-txt-light.svg b/phosphor_orig/SVGs Flat/light/file-txt-light.svg new file mode 100644 index 0000000..14ce862 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-txt-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-video-light.svg b/phosphor_orig/SVGs Flat/light/file-video-light.svg new file mode 100644 index 0000000..9647d5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-video-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-vue-light.svg b/phosphor_orig/SVGs Flat/light/file-vue-light.svg new file mode 100644 index 0000000..c311241 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-vue-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-x-light.svg b/phosphor_orig/SVGs Flat/light/file-x-light.svg new file mode 100644 index 0000000..ebf9e79 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-xls-light.svg b/phosphor_orig/SVGs Flat/light/file-xls-light.svg new file mode 100644 index 0000000..b8c2c00 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-xls-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/file-zip-light.svg b/phosphor_orig/SVGs Flat/light/file-zip-light.svg new file mode 100644 index 0000000..1d383ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/file-zip-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/files-light.svg b/phosphor_orig/SVGs Flat/light/files-light.svg new file mode 100644 index 0000000..cff0dc3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/files-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/film-reel-light.svg b/phosphor_orig/SVGs Flat/light/film-reel-light.svg new file mode 100644 index 0000000..668d75e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/film-reel-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/film-script-light.svg b/phosphor_orig/SVGs Flat/light/film-script-light.svg new file mode 100644 index 0000000..d2e8e27 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/film-script-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/film-slate-light.svg b/phosphor_orig/SVGs Flat/light/film-slate-light.svg new file mode 100644 index 0000000..a2a592e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/film-slate-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/film-strip-light.svg b/phosphor_orig/SVGs Flat/light/film-strip-light.svg new file mode 100644 index 0000000..763bce6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/film-strip-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/fingerprint-light.svg b/phosphor_orig/SVGs Flat/light/fingerprint-light.svg new file mode 100644 index 0000000..0236478 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/fingerprint-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/fingerprint-simple-light.svg b/phosphor_orig/SVGs Flat/light/fingerprint-simple-light.svg new file mode 100644 index 0000000..a2d00e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/fingerprint-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/finn-the-human-light.svg b/phosphor_orig/SVGs Flat/light/finn-the-human-light.svg new file mode 100644 index 0000000..1e01014 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/finn-the-human-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/fire-extinguisher-light.svg b/phosphor_orig/SVGs Flat/light/fire-extinguisher-light.svg new file mode 100644 index 0000000..8a2a2de --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/fire-extinguisher-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/fire-light.svg b/phosphor_orig/SVGs Flat/light/fire-light.svg new file mode 100644 index 0000000..30b9b3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/fire-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/fire-simple-light.svg b/phosphor_orig/SVGs Flat/light/fire-simple-light.svg new file mode 100644 index 0000000..19c2db1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/fire-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/fire-truck-light.svg b/phosphor_orig/SVGs Flat/light/fire-truck-light.svg new file mode 100644 index 0000000..c77eeea --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/fire-truck-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/first-aid-kit-light.svg b/phosphor_orig/SVGs Flat/light/first-aid-kit-light.svg new file mode 100644 index 0000000..b39bdc9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/first-aid-kit-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/first-aid-light.svg b/phosphor_orig/SVGs Flat/light/first-aid-light.svg new file mode 100644 index 0000000..d88f077 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/first-aid-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/fish-light.svg b/phosphor_orig/SVGs Flat/light/fish-light.svg new file mode 100644 index 0000000..e4580be --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/fish-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/fish-simple-light.svg b/phosphor_orig/SVGs Flat/light/fish-simple-light.svg new file mode 100644 index 0000000..3969949 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/fish-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/flag-banner-fold-light.svg b/phosphor_orig/SVGs Flat/light/flag-banner-fold-light.svg new file mode 100644 index 0000000..30235ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/flag-banner-fold-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/flag-banner-light.svg b/phosphor_orig/SVGs Flat/light/flag-banner-light.svg new file mode 100644 index 0000000..d7cda4b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/flag-banner-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/flag-checkered-light.svg b/phosphor_orig/SVGs Flat/light/flag-checkered-light.svg new file mode 100644 index 0000000..a6a617f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/flag-checkered-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/flag-light.svg b/phosphor_orig/SVGs Flat/light/flag-light.svg new file mode 100644 index 0000000..aedcd32 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/flag-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/flag-pennant-light.svg b/phosphor_orig/SVGs Flat/light/flag-pennant-light.svg new file mode 100644 index 0000000..3a493f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/flag-pennant-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/flame-light.svg b/phosphor_orig/SVGs Flat/light/flame-light.svg new file mode 100644 index 0000000..fcf8b98 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/flame-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/flashlight-light.svg b/phosphor_orig/SVGs Flat/light/flashlight-light.svg new file mode 100644 index 0000000..257161a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/flashlight-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/flask-light.svg b/phosphor_orig/SVGs Flat/light/flask-light.svg new file mode 100644 index 0000000..56ca82c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/flask-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/flip-horizontal-light.svg b/phosphor_orig/SVGs Flat/light/flip-horizontal-light.svg new file mode 100644 index 0000000..5409869 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/flip-horizontal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/flip-vertical-light.svg b/phosphor_orig/SVGs Flat/light/flip-vertical-light.svg new file mode 100644 index 0000000..2481c74 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/flip-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/floppy-disk-back-light.svg b/phosphor_orig/SVGs Flat/light/floppy-disk-back-light.svg new file mode 100644 index 0000000..4328006 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/floppy-disk-back-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/floppy-disk-light.svg b/phosphor_orig/SVGs Flat/light/floppy-disk-light.svg new file mode 100644 index 0000000..5db4699 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/floppy-disk-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/flow-arrow-light.svg b/phosphor_orig/SVGs Flat/light/flow-arrow-light.svg new file mode 100644 index 0000000..414ff5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/flow-arrow-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/flower-light.svg b/phosphor_orig/SVGs Flat/light/flower-light.svg new file mode 100644 index 0000000..ae920fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/flower-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/flower-lotus-light.svg b/phosphor_orig/SVGs Flat/light/flower-lotus-light.svg new file mode 100644 index 0000000..c3a75d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/flower-lotus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/flower-tulip-light.svg b/phosphor_orig/SVGs Flat/light/flower-tulip-light.svg new file mode 100644 index 0000000..bac212a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/flower-tulip-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/flying-saucer-light.svg b/phosphor_orig/SVGs Flat/light/flying-saucer-light.svg new file mode 100644 index 0000000..c658ca7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/flying-saucer-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folder-dashed-light.svg b/phosphor_orig/SVGs Flat/light/folder-dashed-light.svg new file mode 100644 index 0000000..5ab478c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folder-dashed-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folder-light.svg b/phosphor_orig/SVGs Flat/light/folder-light.svg new file mode 100644 index 0000000..6d5fd2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folder-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folder-lock-light.svg b/phosphor_orig/SVGs Flat/light/folder-lock-light.svg new file mode 100644 index 0000000..148414f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folder-lock-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folder-minus-light.svg b/phosphor_orig/SVGs Flat/light/folder-minus-light.svg new file mode 100644 index 0000000..5290a17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folder-minus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folder-open-light.svg b/phosphor_orig/SVGs Flat/light/folder-open-light.svg new file mode 100644 index 0000000..54bd3c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folder-open-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folder-plus-light.svg b/phosphor_orig/SVGs Flat/light/folder-plus-light.svg new file mode 100644 index 0000000..b9faf27 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folder-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folder-simple-dashed-light.svg b/phosphor_orig/SVGs Flat/light/folder-simple-dashed-light.svg new file mode 100644 index 0000000..e4e6e3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folder-simple-dashed-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folder-simple-light.svg b/phosphor_orig/SVGs Flat/light/folder-simple-light.svg new file mode 100644 index 0000000..f9982e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folder-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folder-simple-lock-light.svg b/phosphor_orig/SVGs Flat/light/folder-simple-lock-light.svg new file mode 100644 index 0000000..e254109 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folder-simple-lock-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folder-simple-minus-light.svg b/phosphor_orig/SVGs Flat/light/folder-simple-minus-light.svg new file mode 100644 index 0000000..dd43d5b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folder-simple-minus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folder-simple-plus-light.svg b/phosphor_orig/SVGs Flat/light/folder-simple-plus-light.svg new file mode 100644 index 0000000..a095202 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folder-simple-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folder-simple-star-light.svg b/phosphor_orig/SVGs Flat/light/folder-simple-star-light.svg new file mode 100644 index 0000000..9bb2b0b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folder-simple-star-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folder-simple-user-light.svg b/phosphor_orig/SVGs Flat/light/folder-simple-user-light.svg new file mode 100644 index 0000000..18f9596 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folder-simple-user-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folder-star-light.svg b/phosphor_orig/SVGs Flat/light/folder-star-light.svg new file mode 100644 index 0000000..a040f19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folder-star-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folder-user-light.svg b/phosphor_orig/SVGs Flat/light/folder-user-light.svg new file mode 100644 index 0000000..8a53529 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folder-user-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/folders-light.svg b/phosphor_orig/SVGs Flat/light/folders-light.svg new file mode 100644 index 0000000..3e164f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/folders-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/football-helmet-light.svg b/phosphor_orig/SVGs Flat/light/football-helmet-light.svg new file mode 100644 index 0000000..bee982c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/football-helmet-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/football-light.svg b/phosphor_orig/SVGs Flat/light/football-light.svg new file mode 100644 index 0000000..99538e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/football-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/footprints-light.svg b/phosphor_orig/SVGs Flat/light/footprints-light.svg new file mode 100644 index 0000000..67d9088 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/footprints-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/fork-knife-light.svg b/phosphor_orig/SVGs Flat/light/fork-knife-light.svg new file mode 100644 index 0000000..80f9a2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/fork-knife-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/four-k-light.svg b/phosphor_orig/SVGs Flat/light/four-k-light.svg new file mode 100644 index 0000000..389c521 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/four-k-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/frame-corners-light.svg b/phosphor_orig/SVGs Flat/light/frame-corners-light.svg new file mode 100644 index 0000000..644ea42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/frame-corners-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/framer-logo-light.svg b/phosphor_orig/SVGs Flat/light/framer-logo-light.svg new file mode 100644 index 0000000..0af286f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/framer-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/function-light.svg b/phosphor_orig/SVGs Flat/light/function-light.svg new file mode 100644 index 0000000..5d15c2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/function-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/funnel-light.svg b/phosphor_orig/SVGs Flat/light/funnel-light.svg new file mode 100644 index 0000000..1aa444d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/funnel-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/funnel-simple-light.svg b/phosphor_orig/SVGs Flat/light/funnel-simple-light.svg new file mode 100644 index 0000000..68f6032 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/funnel-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/funnel-simple-x-light.svg b/phosphor_orig/SVGs Flat/light/funnel-simple-x-light.svg new file mode 100644 index 0000000..af664a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/funnel-simple-x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/funnel-x-light.svg b/phosphor_orig/SVGs Flat/light/funnel-x-light.svg new file mode 100644 index 0000000..1f38857 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/funnel-x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/game-controller-light.svg b/phosphor_orig/SVGs Flat/light/game-controller-light.svg new file mode 100644 index 0000000..5853498 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/game-controller-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/garage-light.svg b/phosphor_orig/SVGs Flat/light/garage-light.svg new file mode 100644 index 0000000..4395beb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/garage-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gas-can-light.svg b/phosphor_orig/SVGs Flat/light/gas-can-light.svg new file mode 100644 index 0000000..3bfeb7a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gas-can-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gas-pump-light.svg b/phosphor_orig/SVGs Flat/light/gas-pump-light.svg new file mode 100644 index 0000000..a69702a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gas-pump-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gauge-light.svg b/phosphor_orig/SVGs Flat/light/gauge-light.svg new file mode 100644 index 0000000..a86271f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gauge-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gavel-light.svg b/phosphor_orig/SVGs Flat/light/gavel-light.svg new file mode 100644 index 0000000..ed07a81 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gavel-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gear-fine-light.svg b/phosphor_orig/SVGs Flat/light/gear-fine-light.svg new file mode 100644 index 0000000..a7b1e41 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gear-fine-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gear-light.svg b/phosphor_orig/SVGs Flat/light/gear-light.svg new file mode 100644 index 0000000..cbd81ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gear-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gear-six-light.svg b/phosphor_orig/SVGs Flat/light/gear-six-light.svg new file mode 100644 index 0000000..a484199 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gear-six-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gender-female-light.svg b/phosphor_orig/SVGs Flat/light/gender-female-light.svg new file mode 100644 index 0000000..cd27d2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gender-female-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gender-intersex-light.svg b/phosphor_orig/SVGs Flat/light/gender-intersex-light.svg new file mode 100644 index 0000000..aab293a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gender-intersex-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gender-male-light.svg b/phosphor_orig/SVGs Flat/light/gender-male-light.svg new file mode 100644 index 0000000..55b21c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gender-male-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gender-neuter-light.svg b/phosphor_orig/SVGs Flat/light/gender-neuter-light.svg new file mode 100644 index 0000000..5eda50b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gender-neuter-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gender-nonbinary-light.svg b/phosphor_orig/SVGs Flat/light/gender-nonbinary-light.svg new file mode 100644 index 0000000..1715653 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gender-nonbinary-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gender-transgender-light.svg b/phosphor_orig/SVGs Flat/light/gender-transgender-light.svg new file mode 100644 index 0000000..70ef772 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gender-transgender-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/ghost-light.svg b/phosphor_orig/SVGs Flat/light/ghost-light.svg new file mode 100644 index 0000000..af7b9bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/ghost-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gif-light.svg b/phosphor_orig/SVGs Flat/light/gif-light.svg new file mode 100644 index 0000000..6a5e187 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gif-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gift-light.svg b/phosphor_orig/SVGs Flat/light/gift-light.svg new file mode 100644 index 0000000..f1fb132 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gift-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/git-branch-light.svg b/phosphor_orig/SVGs Flat/light/git-branch-light.svg new file mode 100644 index 0000000..f107b83 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/git-branch-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/git-commit-light.svg b/phosphor_orig/SVGs Flat/light/git-commit-light.svg new file mode 100644 index 0000000..cabc526 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/git-commit-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/git-diff-light.svg b/phosphor_orig/SVGs Flat/light/git-diff-light.svg new file mode 100644 index 0000000..140830c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/git-diff-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/git-fork-light.svg b/phosphor_orig/SVGs Flat/light/git-fork-light.svg new file mode 100644 index 0000000..5405897 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/git-fork-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/git-merge-light.svg b/phosphor_orig/SVGs Flat/light/git-merge-light.svg new file mode 100644 index 0000000..2189e3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/git-merge-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/git-pull-request-light.svg b/phosphor_orig/SVGs Flat/light/git-pull-request-light.svg new file mode 100644 index 0000000..2ad88e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/git-pull-request-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/github-logo-light.svg b/phosphor_orig/SVGs Flat/light/github-logo-light.svg new file mode 100644 index 0000000..18714af --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/github-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gitlab-logo-light.svg b/phosphor_orig/SVGs Flat/light/gitlab-logo-light.svg new file mode 100644 index 0000000..9a5c85d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gitlab-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gitlab-logo-simple-light.svg b/phosphor_orig/SVGs Flat/light/gitlab-logo-simple-light.svg new file mode 100644 index 0000000..7df9176 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gitlab-logo-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/globe-hemisphere-east-light.svg b/phosphor_orig/SVGs Flat/light/globe-hemisphere-east-light.svg new file mode 100644 index 0000000..8cd9407 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/globe-hemisphere-east-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/globe-hemisphere-west-light.svg b/phosphor_orig/SVGs Flat/light/globe-hemisphere-west-light.svg new file mode 100644 index 0000000..945171f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/globe-hemisphere-west-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/globe-light.svg b/phosphor_orig/SVGs Flat/light/globe-light.svg new file mode 100644 index 0000000..5c4c7c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/globe-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/globe-simple-light.svg b/phosphor_orig/SVGs Flat/light/globe-simple-light.svg new file mode 100644 index 0000000..d55eae5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/globe-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/globe-simple-x-light.svg b/phosphor_orig/SVGs Flat/light/globe-simple-x-light.svg new file mode 100644 index 0000000..dd78886 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/globe-simple-x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/globe-stand-light.svg b/phosphor_orig/SVGs Flat/light/globe-stand-light.svg new file mode 100644 index 0000000..a3b3624 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/globe-stand-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/globe-x-light.svg b/phosphor_orig/SVGs Flat/light/globe-x-light.svg new file mode 100644 index 0000000..2a179b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/globe-x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/goggles-light.svg b/phosphor_orig/SVGs Flat/light/goggles-light.svg new file mode 100644 index 0000000..6f9a725 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/goggles-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/golf-light.svg b/phosphor_orig/SVGs Flat/light/golf-light.svg new file mode 100644 index 0000000..2e1ebc3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/golf-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/goodreads-logo-light.svg b/phosphor_orig/SVGs Flat/light/goodreads-logo-light.svg new file mode 100644 index 0000000..3a67874 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/goodreads-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/google-cardboard-logo-light.svg b/phosphor_orig/SVGs Flat/light/google-cardboard-logo-light.svg new file mode 100644 index 0000000..b33756c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/google-cardboard-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/google-chrome-logo-light.svg b/phosphor_orig/SVGs Flat/light/google-chrome-logo-light.svg new file mode 100644 index 0000000..911e735 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/google-chrome-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/google-drive-logo-light.svg b/phosphor_orig/SVGs Flat/light/google-drive-logo-light.svg new file mode 100644 index 0000000..d7d4cb7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/google-drive-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/google-logo-light.svg b/phosphor_orig/SVGs Flat/light/google-logo-light.svg new file mode 100644 index 0000000..942f00b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/google-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/google-photos-logo-light.svg b/phosphor_orig/SVGs Flat/light/google-photos-logo-light.svg new file mode 100644 index 0000000..3783c3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/google-photos-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/google-play-logo-light.svg b/phosphor_orig/SVGs Flat/light/google-play-logo-light.svg new file mode 100644 index 0000000..01a283d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/google-play-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/google-podcasts-logo-light.svg b/phosphor_orig/SVGs Flat/light/google-podcasts-logo-light.svg new file mode 100644 index 0000000..232097b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/google-podcasts-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gps-fix-light.svg b/phosphor_orig/SVGs Flat/light/gps-fix-light.svg new file mode 100644 index 0000000..6f9a9aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gps-fix-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gps-light.svg b/phosphor_orig/SVGs Flat/light/gps-light.svg new file mode 100644 index 0000000..6153e98 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gps-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gps-slash-light.svg b/phosphor_orig/SVGs Flat/light/gps-slash-light.svg new file mode 100644 index 0000000..f6d37aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gps-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/gradient-light.svg b/phosphor_orig/SVGs Flat/light/gradient-light.svg new file mode 100644 index 0000000..066a416 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/gradient-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/graduation-cap-light.svg b/phosphor_orig/SVGs Flat/light/graduation-cap-light.svg new file mode 100644 index 0000000..d025e91 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/graduation-cap-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/grains-light.svg b/phosphor_orig/SVGs Flat/light/grains-light.svg new file mode 100644 index 0000000..fde4f57 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/grains-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/grains-slash-light.svg b/phosphor_orig/SVGs Flat/light/grains-slash-light.svg new file mode 100644 index 0000000..310d9ff --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/grains-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/graph-light.svg b/phosphor_orig/SVGs Flat/light/graph-light.svg new file mode 100644 index 0000000..4106e6a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/graph-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/graphics-card-light.svg b/phosphor_orig/SVGs Flat/light/graphics-card-light.svg new file mode 100644 index 0000000..866401c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/graphics-card-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/greater-than-light.svg b/phosphor_orig/SVGs Flat/light/greater-than-light.svg new file mode 100644 index 0000000..8d422da --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/greater-than-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/greater-than-or-equal-light.svg b/phosphor_orig/SVGs Flat/light/greater-than-or-equal-light.svg new file mode 100644 index 0000000..20fb8b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/greater-than-or-equal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/grid-four-light.svg b/phosphor_orig/SVGs Flat/light/grid-four-light.svg new file mode 100644 index 0000000..68e209f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/grid-four-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/grid-nine-light.svg b/phosphor_orig/SVGs Flat/light/grid-nine-light.svg new file mode 100644 index 0000000..a2f7e9f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/grid-nine-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/guitar-light.svg b/phosphor_orig/SVGs Flat/light/guitar-light.svg new file mode 100644 index 0000000..2f4919d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/guitar-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hair-dryer-light.svg b/phosphor_orig/SVGs Flat/light/hair-dryer-light.svg new file mode 100644 index 0000000..405695d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hair-dryer-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hamburger-light.svg b/phosphor_orig/SVGs Flat/light/hamburger-light.svg new file mode 100644 index 0000000..3e3d153 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hamburger-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hammer-light.svg b/phosphor_orig/SVGs Flat/light/hammer-light.svg new file mode 100644 index 0000000..b3dbd71 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hammer-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-arrow-down-light.svg b/phosphor_orig/SVGs Flat/light/hand-arrow-down-light.svg new file mode 100644 index 0000000..8433860 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-arrow-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-arrow-up-light.svg b/phosphor_orig/SVGs Flat/light/hand-arrow-up-light.svg new file mode 100644 index 0000000..d74b504 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-arrow-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-coins-light.svg b/phosphor_orig/SVGs Flat/light/hand-coins-light.svg new file mode 100644 index 0000000..d2de491 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-coins-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-deposit-light.svg b/phosphor_orig/SVGs Flat/light/hand-deposit-light.svg new file mode 100644 index 0000000..1015877 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-deposit-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-eye-light.svg b/phosphor_orig/SVGs Flat/light/hand-eye-light.svg new file mode 100644 index 0000000..b0e7ae7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-eye-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-fist-light.svg b/phosphor_orig/SVGs Flat/light/hand-fist-light.svg new file mode 100644 index 0000000..6539701 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-fist-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-grabbing-light.svg b/phosphor_orig/SVGs Flat/light/hand-grabbing-light.svg new file mode 100644 index 0000000..05db414 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-grabbing-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-heart-light.svg b/phosphor_orig/SVGs Flat/light/hand-heart-light.svg new file mode 100644 index 0000000..8619889 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-heart-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-light.svg b/phosphor_orig/SVGs Flat/light/hand-light.svg new file mode 100644 index 0000000..5b28239 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-palm-light.svg b/phosphor_orig/SVGs Flat/light/hand-palm-light.svg new file mode 100644 index 0000000..b95ceec --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-palm-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-peace-light.svg b/phosphor_orig/SVGs Flat/light/hand-peace-light.svg new file mode 100644 index 0000000..7466575 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-peace-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-pointing-light.svg b/phosphor_orig/SVGs Flat/light/hand-pointing-light.svg new file mode 100644 index 0000000..636c460 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-pointing-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-soap-light.svg b/phosphor_orig/SVGs Flat/light/hand-soap-light.svg new file mode 100644 index 0000000..8722c7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-soap-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-swipe-left-light.svg b/phosphor_orig/SVGs Flat/light/hand-swipe-left-light.svg new file mode 100644 index 0000000..61b1755 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-swipe-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-swipe-right-light.svg b/phosphor_orig/SVGs Flat/light/hand-swipe-right-light.svg new file mode 100644 index 0000000..63d99de --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-swipe-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-tap-light.svg b/phosphor_orig/SVGs Flat/light/hand-tap-light.svg new file mode 100644 index 0000000..07dcadb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-tap-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-waving-light.svg b/phosphor_orig/SVGs Flat/light/hand-waving-light.svg new file mode 100644 index 0000000..e7c28de --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-waving-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hand-withdraw-light.svg b/phosphor_orig/SVGs Flat/light/hand-withdraw-light.svg new file mode 100644 index 0000000..93403e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hand-withdraw-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/handbag-light.svg b/phosphor_orig/SVGs Flat/light/handbag-light.svg new file mode 100644 index 0000000..f8eb58d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/handbag-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/handbag-simple-light.svg b/phosphor_orig/SVGs Flat/light/handbag-simple-light.svg new file mode 100644 index 0000000..d40b744 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/handbag-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hands-clapping-light.svg b/phosphor_orig/SVGs Flat/light/hands-clapping-light.svg new file mode 100644 index 0000000..6b03d71 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hands-clapping-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hands-praying-light.svg b/phosphor_orig/SVGs Flat/light/hands-praying-light.svg new file mode 100644 index 0000000..79db5be --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hands-praying-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/handshake-light.svg b/phosphor_orig/SVGs Flat/light/handshake-light.svg new file mode 100644 index 0000000..c6febf0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/handshake-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hard-drive-light.svg b/phosphor_orig/SVGs Flat/light/hard-drive-light.svg new file mode 100644 index 0000000..73dda9f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hard-drive-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hard-drives-light.svg b/phosphor_orig/SVGs Flat/light/hard-drives-light.svg new file mode 100644 index 0000000..ff8d28c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hard-drives-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hard-hat-light.svg b/phosphor_orig/SVGs Flat/light/hard-hat-light.svg new file mode 100644 index 0000000..6888f73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hard-hat-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hash-light.svg b/phosphor_orig/SVGs Flat/light/hash-light.svg new file mode 100644 index 0000000..1b2c9ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hash-straight-light.svg b/phosphor_orig/SVGs Flat/light/hash-straight-light.svg new file mode 100644 index 0000000..0e74712 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hash-straight-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/head-circuit-light.svg b/phosphor_orig/SVGs Flat/light/head-circuit-light.svg new file mode 100644 index 0000000..0d2e3ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/head-circuit-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/headlights-light.svg b/phosphor_orig/SVGs Flat/light/headlights-light.svg new file mode 100644 index 0000000..cb281d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/headlights-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/headphones-light.svg b/phosphor_orig/SVGs Flat/light/headphones-light.svg new file mode 100644 index 0000000..faae2d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/headphones-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/headset-light.svg b/phosphor_orig/SVGs Flat/light/headset-light.svg new file mode 100644 index 0000000..c06f725 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/headset-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/heart-break-light.svg b/phosphor_orig/SVGs Flat/light/heart-break-light.svg new file mode 100644 index 0000000..30e1459 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/heart-break-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/heart-half-light.svg b/phosphor_orig/SVGs Flat/light/heart-half-light.svg new file mode 100644 index 0000000..dc0eac1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/heart-half-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/heart-light.svg b/phosphor_orig/SVGs Flat/light/heart-light.svg new file mode 100644 index 0000000..fab9ec9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/heart-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/heart-straight-break-light.svg b/phosphor_orig/SVGs Flat/light/heart-straight-break-light.svg new file mode 100644 index 0000000..7152495 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/heart-straight-break-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/heart-straight-light.svg b/phosphor_orig/SVGs Flat/light/heart-straight-light.svg new file mode 100644 index 0000000..4f5b4e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/heart-straight-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/heartbeat-light.svg b/phosphor_orig/SVGs Flat/light/heartbeat-light.svg new file mode 100644 index 0000000..4a05058 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/heartbeat-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hexagon-light.svg b/phosphor_orig/SVGs Flat/light/hexagon-light.svg new file mode 100644 index 0000000..4b696a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hexagon-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/high-definition-light.svg b/phosphor_orig/SVGs Flat/light/high-definition-light.svg new file mode 100644 index 0000000..5859adb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/high-definition-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/high-heel-light.svg b/phosphor_orig/SVGs Flat/light/high-heel-light.svg new file mode 100644 index 0000000..f944919 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/high-heel-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/highlighter-circle-light.svg b/phosphor_orig/SVGs Flat/light/highlighter-circle-light.svg new file mode 100644 index 0000000..bab44b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/highlighter-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/highlighter-light.svg b/phosphor_orig/SVGs Flat/light/highlighter-light.svg new file mode 100644 index 0000000..fde6031 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/highlighter-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hockey-light.svg b/phosphor_orig/SVGs Flat/light/hockey-light.svg new file mode 100644 index 0000000..ddb089a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hockey-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hoodie-light.svg b/phosphor_orig/SVGs Flat/light/hoodie-light.svg new file mode 100644 index 0000000..52a5ff7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hoodie-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/horse-light.svg b/phosphor_orig/SVGs Flat/light/horse-light.svg new file mode 100644 index 0000000..5634312 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/horse-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hospital-light.svg b/phosphor_orig/SVGs Flat/light/hospital-light.svg new file mode 100644 index 0000000..12a7e1d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hospital-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hourglass-high-light.svg b/phosphor_orig/SVGs Flat/light/hourglass-high-light.svg new file mode 100644 index 0000000..6d68623 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hourglass-high-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hourglass-light.svg b/phosphor_orig/SVGs Flat/light/hourglass-light.svg new file mode 100644 index 0000000..57f2f51 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hourglass-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hourglass-low-light.svg b/phosphor_orig/SVGs Flat/light/hourglass-low-light.svg new file mode 100644 index 0000000..13832fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hourglass-low-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hourglass-medium-light.svg b/phosphor_orig/SVGs Flat/light/hourglass-medium-light.svg new file mode 100644 index 0000000..188dbdd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hourglass-medium-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hourglass-simple-high-light.svg b/phosphor_orig/SVGs Flat/light/hourglass-simple-high-light.svg new file mode 100644 index 0000000..e4de2c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hourglass-simple-high-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hourglass-simple-light.svg b/phosphor_orig/SVGs Flat/light/hourglass-simple-light.svg new file mode 100644 index 0000000..b962040 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hourglass-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hourglass-simple-low-light.svg b/phosphor_orig/SVGs Flat/light/hourglass-simple-low-light.svg new file mode 100644 index 0000000..17dc2e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hourglass-simple-low-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hourglass-simple-medium-light.svg b/phosphor_orig/SVGs Flat/light/hourglass-simple-medium-light.svg new file mode 100644 index 0000000..4c64650 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hourglass-simple-medium-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/house-light.svg b/phosphor_orig/SVGs Flat/light/house-light.svg new file mode 100644 index 0000000..48d8aa5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/house-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/house-line-light.svg b/phosphor_orig/SVGs Flat/light/house-line-light.svg new file mode 100644 index 0000000..244b3ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/house-line-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/house-simple-light.svg b/phosphor_orig/SVGs Flat/light/house-simple-light.svg new file mode 100644 index 0000000..836e9cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/house-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/hurricane-light.svg b/phosphor_orig/SVGs Flat/light/hurricane-light.svg new file mode 100644 index 0000000..1f7237b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/hurricane-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/ice-cream-light.svg b/phosphor_orig/SVGs Flat/light/ice-cream-light.svg new file mode 100644 index 0000000..d4f302c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/ice-cream-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/identification-badge-light.svg b/phosphor_orig/SVGs Flat/light/identification-badge-light.svg new file mode 100644 index 0000000..fba7c81 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/identification-badge-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/identification-card-light.svg b/phosphor_orig/SVGs Flat/light/identification-card-light.svg new file mode 100644 index 0000000..9416bfa --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/identification-card-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/image-broken-light.svg b/phosphor_orig/SVGs Flat/light/image-broken-light.svg new file mode 100644 index 0000000..e5d48ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/image-broken-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/image-light.svg b/phosphor_orig/SVGs Flat/light/image-light.svg new file mode 100644 index 0000000..b5ebd5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/image-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/image-square-light.svg b/phosphor_orig/SVGs Flat/light/image-square-light.svg new file mode 100644 index 0000000..4c0a6cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/image-square-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/images-light.svg b/phosphor_orig/SVGs Flat/light/images-light.svg new file mode 100644 index 0000000..d7d9052 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/images-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/images-square-light.svg b/phosphor_orig/SVGs Flat/light/images-square-light.svg new file mode 100644 index 0000000..b16cd4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/images-square-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/infinity-light.svg b/phosphor_orig/SVGs Flat/light/infinity-light.svg new file mode 100644 index 0000000..d9be3d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/infinity-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/info-light.svg b/phosphor_orig/SVGs Flat/light/info-light.svg new file mode 100644 index 0000000..fde03f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/info-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/instagram-logo-light.svg b/phosphor_orig/SVGs Flat/light/instagram-logo-light.svg new file mode 100644 index 0000000..85cadef --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/instagram-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/intersect-light.svg b/phosphor_orig/SVGs Flat/light/intersect-light.svg new file mode 100644 index 0000000..fd6f34c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/intersect-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/intersect-square-light.svg b/phosphor_orig/SVGs Flat/light/intersect-square-light.svg new file mode 100644 index 0000000..f6424c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/intersect-square-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/intersect-three-light.svg b/phosphor_orig/SVGs Flat/light/intersect-three-light.svg new file mode 100644 index 0000000..b48911f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/intersect-three-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/intersection-light.svg b/phosphor_orig/SVGs Flat/light/intersection-light.svg new file mode 100644 index 0000000..2f1f9c2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/intersection-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/invoice-light.svg b/phosphor_orig/SVGs Flat/light/invoice-light.svg new file mode 100644 index 0000000..774c101 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/invoice-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/island-light.svg b/phosphor_orig/SVGs Flat/light/island-light.svg new file mode 100644 index 0000000..ca7ea14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/island-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/jar-label-light.svg b/phosphor_orig/SVGs Flat/light/jar-label-light.svg new file mode 100644 index 0000000..4ea99c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/jar-label-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/jar-light.svg b/phosphor_orig/SVGs Flat/light/jar-light.svg new file mode 100644 index 0000000..8e03621 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/jar-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/jeep-light.svg b/phosphor_orig/SVGs Flat/light/jeep-light.svg new file mode 100644 index 0000000..8d3ee35 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/jeep-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/joystick-light.svg b/phosphor_orig/SVGs Flat/light/joystick-light.svg new file mode 100644 index 0000000..39fc063 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/joystick-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/kanban-light.svg b/phosphor_orig/SVGs Flat/light/kanban-light.svg new file mode 100644 index 0000000..2c1af3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/kanban-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/key-light.svg b/phosphor_orig/SVGs Flat/light/key-light.svg new file mode 100644 index 0000000..d1b039d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/key-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/key-return-light.svg b/phosphor_orig/SVGs Flat/light/key-return-light.svg new file mode 100644 index 0000000..7780eb8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/key-return-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/keyboard-light.svg b/phosphor_orig/SVGs Flat/light/keyboard-light.svg new file mode 100644 index 0000000..b6251b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/keyboard-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/keyhole-light.svg b/phosphor_orig/SVGs Flat/light/keyhole-light.svg new file mode 100644 index 0000000..e584277 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/keyhole-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/knife-light.svg b/phosphor_orig/SVGs Flat/light/knife-light.svg new file mode 100644 index 0000000..8db4f71 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/knife-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/ladder-light.svg b/phosphor_orig/SVGs Flat/light/ladder-light.svg new file mode 100644 index 0000000..97d3975 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/ladder-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/ladder-simple-light.svg b/phosphor_orig/SVGs Flat/light/ladder-simple-light.svg new file mode 100644 index 0000000..3db2152 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/ladder-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lamp-light.svg b/phosphor_orig/SVGs Flat/light/lamp-light.svg new file mode 100644 index 0000000..607c219 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lamp-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lamp-pendant-light.svg b/phosphor_orig/SVGs Flat/light/lamp-pendant-light.svg new file mode 100644 index 0000000..4cff9f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lamp-pendant-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/laptop-light.svg b/phosphor_orig/SVGs Flat/light/laptop-light.svg new file mode 100644 index 0000000..ef64f3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/laptop-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lasso-light.svg b/phosphor_orig/SVGs Flat/light/lasso-light.svg new file mode 100644 index 0000000..bb2a683 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lasso-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lastfm-logo-light.svg b/phosphor_orig/SVGs Flat/light/lastfm-logo-light.svg new file mode 100644 index 0000000..7f47c23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lastfm-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/layout-light.svg b/phosphor_orig/SVGs Flat/light/layout-light.svg new file mode 100644 index 0000000..4061185 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/layout-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/leaf-light.svg b/phosphor_orig/SVGs Flat/light/leaf-light.svg new file mode 100644 index 0000000..23fe543 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/leaf-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lectern-light.svg b/phosphor_orig/SVGs Flat/light/lectern-light.svg new file mode 100644 index 0000000..91acf02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lectern-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lego-light.svg b/phosphor_orig/SVGs Flat/light/lego-light.svg new file mode 100644 index 0000000..7b90e0c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lego-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lego-smiley-light.svg b/phosphor_orig/SVGs Flat/light/lego-smiley-light.svg new file mode 100644 index 0000000..6d846f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lego-smiley-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/less-than-light.svg b/phosphor_orig/SVGs Flat/light/less-than-light.svg new file mode 100644 index 0000000..477e135 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/less-than-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/less-than-or-equal-light.svg b/phosphor_orig/SVGs Flat/light/less-than-or-equal-light.svg new file mode 100644 index 0000000..4141d12 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/less-than-or-equal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/letter-circle-h-light.svg b/phosphor_orig/SVGs Flat/light/letter-circle-h-light.svg new file mode 100644 index 0000000..7f7c72e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/letter-circle-h-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/letter-circle-p-light.svg b/phosphor_orig/SVGs Flat/light/letter-circle-p-light.svg new file mode 100644 index 0000000..8ed3193 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/letter-circle-p-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/letter-circle-v-light.svg b/phosphor_orig/SVGs Flat/light/letter-circle-v-light.svg new file mode 100644 index 0000000..80aee3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/letter-circle-v-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lifebuoy-light.svg b/phosphor_orig/SVGs Flat/light/lifebuoy-light.svg new file mode 100644 index 0000000..d9a3b19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lifebuoy-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lightbulb-filament-light.svg b/phosphor_orig/SVGs Flat/light/lightbulb-filament-light.svg new file mode 100644 index 0000000..d5d37c2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lightbulb-filament-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lightbulb-light.svg b/phosphor_orig/SVGs Flat/light/lightbulb-light.svg new file mode 100644 index 0000000..6ee3423 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lightbulb-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lighthouse-light.svg b/phosphor_orig/SVGs Flat/light/lighthouse-light.svg new file mode 100644 index 0000000..78e0163 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lighthouse-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lightning-a-light.svg b/phosphor_orig/SVGs Flat/light/lightning-a-light.svg new file mode 100644 index 0000000..c0d7bd3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lightning-a-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lightning-light.svg b/phosphor_orig/SVGs Flat/light/lightning-light.svg new file mode 100644 index 0000000..e7eb434 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lightning-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lightning-slash-light.svg b/phosphor_orig/SVGs Flat/light/lightning-slash-light.svg new file mode 100644 index 0000000..ed74c01 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lightning-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/line-segment-light.svg b/phosphor_orig/SVGs Flat/light/line-segment-light.svg new file mode 100644 index 0000000..cd4aa7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/line-segment-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/line-segments-light.svg b/phosphor_orig/SVGs Flat/light/line-segments-light.svg new file mode 100644 index 0000000..430b3e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/line-segments-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/line-vertical-light.svg b/phosphor_orig/SVGs Flat/light/line-vertical-light.svg new file mode 100644 index 0000000..52be176 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/line-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/link-break-light.svg b/phosphor_orig/SVGs Flat/light/link-break-light.svg new file mode 100644 index 0000000..30a35fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/link-break-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/link-light.svg b/phosphor_orig/SVGs Flat/light/link-light.svg new file mode 100644 index 0000000..b4b6774 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/link-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/link-simple-break-light.svg b/phosphor_orig/SVGs Flat/light/link-simple-break-light.svg new file mode 100644 index 0000000..871bc31 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/link-simple-break-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/link-simple-horizontal-break-light.svg b/phosphor_orig/SVGs Flat/light/link-simple-horizontal-break-light.svg new file mode 100644 index 0000000..3b00067 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/link-simple-horizontal-break-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/link-simple-horizontal-light.svg b/phosphor_orig/SVGs Flat/light/link-simple-horizontal-light.svg new file mode 100644 index 0000000..dbdb0ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/link-simple-horizontal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/link-simple-light.svg b/phosphor_orig/SVGs Flat/light/link-simple-light.svg new file mode 100644 index 0000000..df5b15f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/link-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/linkedin-logo-light.svg b/phosphor_orig/SVGs Flat/light/linkedin-logo-light.svg new file mode 100644 index 0000000..dc3be05 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/linkedin-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/linktree-logo-light.svg b/phosphor_orig/SVGs Flat/light/linktree-logo-light.svg new file mode 100644 index 0000000..9946370 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/linktree-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/linux-logo-light.svg b/phosphor_orig/SVGs Flat/light/linux-logo-light.svg new file mode 100644 index 0000000..2f0bd15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/linux-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/list-bullets-light.svg b/phosphor_orig/SVGs Flat/light/list-bullets-light.svg new file mode 100644 index 0000000..13e6ae0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/list-bullets-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/list-checks-light.svg b/phosphor_orig/SVGs Flat/light/list-checks-light.svg new file mode 100644 index 0000000..fefa20f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/list-checks-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/list-dashes-light.svg b/phosphor_orig/SVGs Flat/light/list-dashes-light.svg new file mode 100644 index 0000000..f0230c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/list-dashes-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/list-heart-light.svg b/phosphor_orig/SVGs Flat/light/list-heart-light.svg new file mode 100644 index 0000000..e9eefa0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/list-heart-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/list-light.svg b/phosphor_orig/SVGs Flat/light/list-light.svg new file mode 100644 index 0000000..57949cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/list-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/list-magnifying-glass-light.svg b/phosphor_orig/SVGs Flat/light/list-magnifying-glass-light.svg new file mode 100644 index 0000000..d9db1d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/list-magnifying-glass-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/list-numbers-light.svg b/phosphor_orig/SVGs Flat/light/list-numbers-light.svg new file mode 100644 index 0000000..96a1ecc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/list-numbers-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/list-plus-light.svg b/phosphor_orig/SVGs Flat/light/list-plus-light.svg new file mode 100644 index 0000000..50dfa04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/list-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/list-star-light.svg b/phosphor_orig/SVGs Flat/light/list-star-light.svg new file mode 100644 index 0000000..fdb8988 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/list-star-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lock-key-light.svg b/phosphor_orig/SVGs Flat/light/lock-key-light.svg new file mode 100644 index 0000000..ced3470 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lock-key-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lock-key-open-light.svg b/phosphor_orig/SVGs Flat/light/lock-key-open-light.svg new file mode 100644 index 0000000..575c182 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lock-key-open-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lock-laminated-light.svg b/phosphor_orig/SVGs Flat/light/lock-laminated-light.svg new file mode 100644 index 0000000..96bc034 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lock-laminated-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lock-laminated-open-light.svg b/phosphor_orig/SVGs Flat/light/lock-laminated-open-light.svg new file mode 100644 index 0000000..d8b538d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lock-laminated-open-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lock-light.svg b/phosphor_orig/SVGs Flat/light/lock-light.svg new file mode 100644 index 0000000..c7df30e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lock-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lock-open-light.svg b/phosphor_orig/SVGs Flat/light/lock-open-light.svg new file mode 100644 index 0000000..133f1bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lock-open-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lock-simple-light.svg b/phosphor_orig/SVGs Flat/light/lock-simple-light.svg new file mode 100644 index 0000000..c4f0902 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lock-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lock-simple-open-light.svg b/phosphor_orig/SVGs Flat/light/lock-simple-open-light.svg new file mode 100644 index 0000000..e9c386d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lock-simple-open-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/lockers-light.svg b/phosphor_orig/SVGs Flat/light/lockers-light.svg new file mode 100644 index 0000000..2f22016 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/lockers-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/log-light.svg b/phosphor_orig/SVGs Flat/light/log-light.svg new file mode 100644 index 0000000..4f39eaf --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/log-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/magic-wand-light.svg b/phosphor_orig/SVGs Flat/light/magic-wand-light.svg new file mode 100644 index 0000000..e1d6424 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/magic-wand-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/magnet-light.svg b/phosphor_orig/SVGs Flat/light/magnet-light.svg new file mode 100644 index 0000000..8567d19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/magnet-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/magnet-straight-light.svg b/phosphor_orig/SVGs Flat/light/magnet-straight-light.svg new file mode 100644 index 0000000..31b9111 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/magnet-straight-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/magnifying-glass-light.svg b/phosphor_orig/SVGs Flat/light/magnifying-glass-light.svg new file mode 100644 index 0000000..b649d36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/magnifying-glass-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/magnifying-glass-minus-light.svg b/phosphor_orig/SVGs Flat/light/magnifying-glass-minus-light.svg new file mode 100644 index 0000000..3acfd22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/magnifying-glass-minus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/magnifying-glass-plus-light.svg b/phosphor_orig/SVGs Flat/light/magnifying-glass-plus-light.svg new file mode 100644 index 0000000..8cbc156 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/magnifying-glass-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/mailbox-light.svg b/phosphor_orig/SVGs Flat/light/mailbox-light.svg new file mode 100644 index 0000000..005305d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/mailbox-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/map-pin-area-light.svg b/phosphor_orig/SVGs Flat/light/map-pin-area-light.svg new file mode 100644 index 0000000..89c1772 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/map-pin-area-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/map-pin-light.svg b/phosphor_orig/SVGs Flat/light/map-pin-light.svg new file mode 100644 index 0000000..f589808 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/map-pin-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/map-pin-line-light.svg b/phosphor_orig/SVGs Flat/light/map-pin-line-light.svg new file mode 100644 index 0000000..13be98a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/map-pin-line-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/map-pin-plus-light.svg b/phosphor_orig/SVGs Flat/light/map-pin-plus-light.svg new file mode 100644 index 0000000..b9d4b52 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/map-pin-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/map-pin-simple-area-light.svg b/phosphor_orig/SVGs Flat/light/map-pin-simple-area-light.svg new file mode 100644 index 0000000..268990e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/map-pin-simple-area-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/map-pin-simple-light.svg b/phosphor_orig/SVGs Flat/light/map-pin-simple-light.svg new file mode 100644 index 0000000..1abfd36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/map-pin-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/map-pin-simple-line-light.svg b/phosphor_orig/SVGs Flat/light/map-pin-simple-line-light.svg new file mode 100644 index 0000000..7a8590c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/map-pin-simple-line-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/map-trifold-light.svg b/phosphor_orig/SVGs Flat/light/map-trifold-light.svg new file mode 100644 index 0000000..0d9ad24 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/map-trifold-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/markdown-logo-light.svg b/phosphor_orig/SVGs Flat/light/markdown-logo-light.svg new file mode 100644 index 0000000..3801b11 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/markdown-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/marker-circle-light.svg b/phosphor_orig/SVGs Flat/light/marker-circle-light.svg new file mode 100644 index 0000000..4fddd53 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/marker-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/martini-light.svg b/phosphor_orig/SVGs Flat/light/martini-light.svg new file mode 100644 index 0000000..b3087a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/martini-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/mask-happy-light.svg b/phosphor_orig/SVGs Flat/light/mask-happy-light.svg new file mode 100644 index 0000000..0d57bf2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/mask-happy-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/mask-sad-light.svg b/phosphor_orig/SVGs Flat/light/mask-sad-light.svg new file mode 100644 index 0000000..cd070f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/mask-sad-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/mastodon-logo-light.svg b/phosphor_orig/SVGs Flat/light/mastodon-logo-light.svg new file mode 100644 index 0000000..e555110 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/mastodon-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/math-operations-light.svg b/phosphor_orig/SVGs Flat/light/math-operations-light.svg new file mode 100644 index 0000000..102dacb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/math-operations-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/matrix-logo-light.svg b/phosphor_orig/SVGs Flat/light/matrix-logo-light.svg new file mode 100644 index 0000000..ee4f386 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/matrix-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/medal-light.svg b/phosphor_orig/SVGs Flat/light/medal-light.svg new file mode 100644 index 0000000..d35cd2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/medal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/medal-military-light.svg b/phosphor_orig/SVGs Flat/light/medal-military-light.svg new file mode 100644 index 0000000..05be73e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/medal-military-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/medium-logo-light.svg b/phosphor_orig/SVGs Flat/light/medium-logo-light.svg new file mode 100644 index 0000000..8127a18 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/medium-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/megaphone-light.svg b/phosphor_orig/SVGs Flat/light/megaphone-light.svg new file mode 100644 index 0000000..fb49c4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/megaphone-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/megaphone-simple-light.svg b/phosphor_orig/SVGs Flat/light/megaphone-simple-light.svg new file mode 100644 index 0000000..7a4847f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/megaphone-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/member-of-light.svg b/phosphor_orig/SVGs Flat/light/member-of-light.svg new file mode 100644 index 0000000..6524589 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/member-of-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/memory-light.svg b/phosphor_orig/SVGs Flat/light/memory-light.svg new file mode 100644 index 0000000..5fce2b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/memory-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/messenger-logo-light.svg b/phosphor_orig/SVGs Flat/light/messenger-logo-light.svg new file mode 100644 index 0000000..e1a2c1d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/messenger-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/meta-logo-light.svg b/phosphor_orig/SVGs Flat/light/meta-logo-light.svg new file mode 100644 index 0000000..ca122d0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/meta-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/meteor-light.svg b/phosphor_orig/SVGs Flat/light/meteor-light.svg new file mode 100644 index 0000000..6ec3dd5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/meteor-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/metronome-light.svg b/phosphor_orig/SVGs Flat/light/metronome-light.svg new file mode 100644 index 0000000..46c8f36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/metronome-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/microphone-light.svg b/phosphor_orig/SVGs Flat/light/microphone-light.svg new file mode 100644 index 0000000..767ea58 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/microphone-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/microphone-slash-light.svg b/phosphor_orig/SVGs Flat/light/microphone-slash-light.svg new file mode 100644 index 0000000..50b6d69 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/microphone-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/microphone-stage-light.svg b/phosphor_orig/SVGs Flat/light/microphone-stage-light.svg new file mode 100644 index 0000000..09ae58f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/microphone-stage-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/microscope-light.svg b/phosphor_orig/SVGs Flat/light/microscope-light.svg new file mode 100644 index 0000000..9684a86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/microscope-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/microsoft-excel-logo-light.svg b/phosphor_orig/SVGs Flat/light/microsoft-excel-logo-light.svg new file mode 100644 index 0000000..2f3592c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/microsoft-excel-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/microsoft-outlook-logo-light.svg b/phosphor_orig/SVGs Flat/light/microsoft-outlook-logo-light.svg new file mode 100644 index 0000000..4cb8159 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/microsoft-outlook-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/microsoft-powerpoint-logo-light.svg b/phosphor_orig/SVGs Flat/light/microsoft-powerpoint-logo-light.svg new file mode 100644 index 0000000..6956df1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/microsoft-powerpoint-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/microsoft-teams-logo-light.svg b/phosphor_orig/SVGs Flat/light/microsoft-teams-logo-light.svg new file mode 100644 index 0000000..41f061d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/microsoft-teams-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/microsoft-word-logo-light.svg b/phosphor_orig/SVGs Flat/light/microsoft-word-logo-light.svg new file mode 100644 index 0000000..1286410 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/microsoft-word-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/minus-circle-light.svg b/phosphor_orig/SVGs Flat/light/minus-circle-light.svg new file mode 100644 index 0000000..c9b79ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/minus-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/minus-light.svg b/phosphor_orig/SVGs Flat/light/minus-light.svg new file mode 100644 index 0000000..1d6d5c3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/minus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/minus-square-light.svg b/phosphor_orig/SVGs Flat/light/minus-square-light.svg new file mode 100644 index 0000000..e5f4e40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/minus-square-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/money-light.svg b/phosphor_orig/SVGs Flat/light/money-light.svg new file mode 100644 index 0000000..8f1d92c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/money-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/money-wavy-light.svg b/phosphor_orig/SVGs Flat/light/money-wavy-light.svg new file mode 100644 index 0000000..ae64494 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/money-wavy-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/monitor-arrow-up-light.svg b/phosphor_orig/SVGs Flat/light/monitor-arrow-up-light.svg new file mode 100644 index 0000000..b53c8ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/monitor-arrow-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/monitor-light.svg b/phosphor_orig/SVGs Flat/light/monitor-light.svg new file mode 100644 index 0000000..feb408b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/monitor-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/monitor-play-light.svg b/phosphor_orig/SVGs Flat/light/monitor-play-light.svg new file mode 100644 index 0000000..ee7ac1d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/monitor-play-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/moon-light.svg b/phosphor_orig/SVGs Flat/light/moon-light.svg new file mode 100644 index 0000000..a8172a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/moon-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/moon-stars-light.svg b/phosphor_orig/SVGs Flat/light/moon-stars-light.svg new file mode 100644 index 0000000..a67caf6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/moon-stars-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/moped-front-light.svg b/phosphor_orig/SVGs Flat/light/moped-front-light.svg new file mode 100644 index 0000000..4467e78 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/moped-front-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/moped-light.svg b/phosphor_orig/SVGs Flat/light/moped-light.svg new file mode 100644 index 0000000..dcea70e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/moped-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/mosque-light.svg b/phosphor_orig/SVGs Flat/light/mosque-light.svg new file mode 100644 index 0000000..29d4d1d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/mosque-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/motorcycle-light.svg b/phosphor_orig/SVGs Flat/light/motorcycle-light.svg new file mode 100644 index 0000000..8de93e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/motorcycle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/mountains-light.svg b/phosphor_orig/SVGs Flat/light/mountains-light.svg new file mode 100644 index 0000000..08ddb15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/mountains-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/mouse-left-click-light.svg b/phosphor_orig/SVGs Flat/light/mouse-left-click-light.svg new file mode 100644 index 0000000..7fa8e47 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/mouse-left-click-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/mouse-light.svg b/phosphor_orig/SVGs Flat/light/mouse-light.svg new file mode 100644 index 0000000..2fecc41 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/mouse-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/mouse-middle-click-light.svg b/phosphor_orig/SVGs Flat/light/mouse-middle-click-light.svg new file mode 100644 index 0000000..92e7d02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/mouse-middle-click-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/mouse-right-click-light.svg b/phosphor_orig/SVGs Flat/light/mouse-right-click-light.svg new file mode 100644 index 0000000..ad50b05 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/mouse-right-click-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/mouse-scroll-light.svg b/phosphor_orig/SVGs Flat/light/mouse-scroll-light.svg new file mode 100644 index 0000000..d24b20b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/mouse-scroll-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/mouse-simple-light.svg b/phosphor_orig/SVGs Flat/light/mouse-simple-light.svg new file mode 100644 index 0000000..19efbd9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/mouse-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/music-note-light.svg b/phosphor_orig/SVGs Flat/light/music-note-light.svg new file mode 100644 index 0000000..0ca6566 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/music-note-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/music-note-simple-light.svg b/phosphor_orig/SVGs Flat/light/music-note-simple-light.svg new file mode 100644 index 0000000..f6dc09c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/music-note-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/music-notes-light.svg b/phosphor_orig/SVGs Flat/light/music-notes-light.svg new file mode 100644 index 0000000..13c1635 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/music-notes-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/music-notes-minus-light.svg b/phosphor_orig/SVGs Flat/light/music-notes-minus-light.svg new file mode 100644 index 0000000..6ace08d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/music-notes-minus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/music-notes-plus-light.svg b/phosphor_orig/SVGs Flat/light/music-notes-plus-light.svg new file mode 100644 index 0000000..35ec0a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/music-notes-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/music-notes-simple-light.svg b/phosphor_orig/SVGs Flat/light/music-notes-simple-light.svg new file mode 100644 index 0000000..770e0f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/music-notes-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/navigation-arrow-light.svg b/phosphor_orig/SVGs Flat/light/navigation-arrow-light.svg new file mode 100644 index 0000000..6ec87dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/navigation-arrow-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/needle-light.svg b/phosphor_orig/SVGs Flat/light/needle-light.svg new file mode 100644 index 0000000..01baa21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/needle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/network-light.svg b/phosphor_orig/SVGs Flat/light/network-light.svg new file mode 100644 index 0000000..aa150bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/network-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/network-slash-light.svg b/phosphor_orig/SVGs Flat/light/network-slash-light.svg new file mode 100644 index 0000000..9675f5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/network-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/network-x-light.svg b/phosphor_orig/SVGs Flat/light/network-x-light.svg new file mode 100644 index 0000000..caa1512 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/network-x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/newspaper-clipping-light.svg b/phosphor_orig/SVGs Flat/light/newspaper-clipping-light.svg new file mode 100644 index 0000000..ff3f3db --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/newspaper-clipping-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/newspaper-light.svg b/phosphor_orig/SVGs Flat/light/newspaper-light.svg new file mode 100644 index 0000000..29a7bb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/newspaper-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/not-equals-light.svg b/phosphor_orig/SVGs Flat/light/not-equals-light.svg new file mode 100644 index 0000000..bfc6b5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/not-equals-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/not-member-of-light.svg b/phosphor_orig/SVGs Flat/light/not-member-of-light.svg new file mode 100644 index 0000000..8c05257 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/not-member-of-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/not-subset-of-light.svg b/phosphor_orig/SVGs Flat/light/not-subset-of-light.svg new file mode 100644 index 0000000..bc857ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/not-subset-of-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/not-superset-of-light.svg b/phosphor_orig/SVGs Flat/light/not-superset-of-light.svg new file mode 100644 index 0000000..e37523c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/not-superset-of-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/notches-light.svg b/phosphor_orig/SVGs Flat/light/notches-light.svg new file mode 100644 index 0000000..a0c3f3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/notches-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/note-blank-light.svg b/phosphor_orig/SVGs Flat/light/note-blank-light.svg new file mode 100644 index 0000000..9a4ba09 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/note-blank-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/note-light.svg b/phosphor_orig/SVGs Flat/light/note-light.svg new file mode 100644 index 0000000..bf98ddc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/note-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/note-pencil-light.svg b/phosphor_orig/SVGs Flat/light/note-pencil-light.svg new file mode 100644 index 0000000..3612f91 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/note-pencil-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/notebook-light.svg b/phosphor_orig/SVGs Flat/light/notebook-light.svg new file mode 100644 index 0000000..5ed5854 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/notebook-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/notepad-light.svg b/phosphor_orig/SVGs Flat/light/notepad-light.svg new file mode 100644 index 0000000..3348dfc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/notepad-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/notification-light.svg b/phosphor_orig/SVGs Flat/light/notification-light.svg new file mode 100644 index 0000000..15c4f15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/notification-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/notion-logo-light.svg b/phosphor_orig/SVGs Flat/light/notion-logo-light.svg new file mode 100644 index 0000000..7ebf894 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/notion-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/nuclear-plant-light.svg b/phosphor_orig/SVGs Flat/light/nuclear-plant-light.svg new file mode 100644 index 0000000..ae3a17b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/nuclear-plant-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-circle-eight-light.svg b/phosphor_orig/SVGs Flat/light/number-circle-eight-light.svg new file mode 100644 index 0000000..88ac3e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-circle-eight-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-circle-five-light.svg b/phosphor_orig/SVGs Flat/light/number-circle-five-light.svg new file mode 100644 index 0000000..a48a48f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-circle-five-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-circle-four-light.svg b/phosphor_orig/SVGs Flat/light/number-circle-four-light.svg new file mode 100644 index 0000000..43f8f1d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-circle-four-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-circle-nine-light.svg b/phosphor_orig/SVGs Flat/light/number-circle-nine-light.svg new file mode 100644 index 0000000..b3577c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-circle-nine-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-circle-one-light.svg b/phosphor_orig/SVGs Flat/light/number-circle-one-light.svg new file mode 100644 index 0000000..004983e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-circle-one-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-circle-seven-light.svg b/phosphor_orig/SVGs Flat/light/number-circle-seven-light.svg new file mode 100644 index 0000000..07abc75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-circle-seven-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-circle-six-light.svg b/phosphor_orig/SVGs Flat/light/number-circle-six-light.svg new file mode 100644 index 0000000..b1e6855 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-circle-six-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-circle-three-light.svg b/phosphor_orig/SVGs Flat/light/number-circle-three-light.svg new file mode 100644 index 0000000..c49401e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-circle-three-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-circle-two-light.svg b/phosphor_orig/SVGs Flat/light/number-circle-two-light.svg new file mode 100644 index 0000000..4e9d8df --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-circle-two-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-circle-zero-light.svg b/phosphor_orig/SVGs Flat/light/number-circle-zero-light.svg new file mode 100644 index 0000000..992007c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-circle-zero-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-eight-light.svg b/phosphor_orig/SVGs Flat/light/number-eight-light.svg new file mode 100644 index 0000000..286567f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-eight-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-five-light.svg b/phosphor_orig/SVGs Flat/light/number-five-light.svg new file mode 100644 index 0000000..7491292 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-five-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-four-light.svg b/phosphor_orig/SVGs Flat/light/number-four-light.svg new file mode 100644 index 0000000..d5e04cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-four-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-nine-light.svg b/phosphor_orig/SVGs Flat/light/number-nine-light.svg new file mode 100644 index 0000000..3a3e7c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-nine-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-one-light.svg b/phosphor_orig/SVGs Flat/light/number-one-light.svg new file mode 100644 index 0000000..50205d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-one-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-seven-light.svg b/phosphor_orig/SVGs Flat/light/number-seven-light.svg new file mode 100644 index 0000000..3c0a690 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-seven-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-six-light.svg b/phosphor_orig/SVGs Flat/light/number-six-light.svg new file mode 100644 index 0000000..0fe0a10 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-six-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-square-eight-light.svg b/phosphor_orig/SVGs Flat/light/number-square-eight-light.svg new file mode 100644 index 0000000..3f9af7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-square-eight-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-square-five-light.svg b/phosphor_orig/SVGs Flat/light/number-square-five-light.svg new file mode 100644 index 0000000..7eaf194 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-square-five-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-square-four-light.svg b/phosphor_orig/SVGs Flat/light/number-square-four-light.svg new file mode 100644 index 0000000..a6c12f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-square-four-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-square-nine-light.svg b/phosphor_orig/SVGs Flat/light/number-square-nine-light.svg new file mode 100644 index 0000000..d13aab7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-square-nine-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-square-one-light.svg b/phosphor_orig/SVGs Flat/light/number-square-one-light.svg new file mode 100644 index 0000000..5b19d75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-square-one-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-square-seven-light.svg b/phosphor_orig/SVGs Flat/light/number-square-seven-light.svg new file mode 100644 index 0000000..9373846 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-square-seven-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-square-six-light.svg b/phosphor_orig/SVGs Flat/light/number-square-six-light.svg new file mode 100644 index 0000000..d7bd284 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-square-six-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-square-three-light.svg b/phosphor_orig/SVGs Flat/light/number-square-three-light.svg new file mode 100644 index 0000000..ee0c01d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-square-three-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-square-two-light.svg b/phosphor_orig/SVGs Flat/light/number-square-two-light.svg new file mode 100644 index 0000000..48d05b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-square-two-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-square-zero-light.svg b/phosphor_orig/SVGs Flat/light/number-square-zero-light.svg new file mode 100644 index 0000000..82c9eed --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-square-zero-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-three-light.svg b/phosphor_orig/SVGs Flat/light/number-three-light.svg new file mode 100644 index 0000000..447975d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-three-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-two-light.svg b/phosphor_orig/SVGs Flat/light/number-two-light.svg new file mode 100644 index 0000000..c15b72a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-two-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/number-zero-light.svg b/phosphor_orig/SVGs Flat/light/number-zero-light.svg new file mode 100644 index 0000000..fa95855 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/number-zero-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/numpad-light.svg b/phosphor_orig/SVGs Flat/light/numpad-light.svg new file mode 100644 index 0000000..fa48f86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/numpad-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/nut-light.svg b/phosphor_orig/SVGs Flat/light/nut-light.svg new file mode 100644 index 0000000..20a22d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/nut-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/ny-times-logo-light.svg b/phosphor_orig/SVGs Flat/light/ny-times-logo-light.svg new file mode 100644 index 0000000..7685553 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/ny-times-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/octagon-light.svg b/phosphor_orig/SVGs Flat/light/octagon-light.svg new file mode 100644 index 0000000..304b301 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/octagon-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/office-chair-light.svg b/phosphor_orig/SVGs Flat/light/office-chair-light.svg new file mode 100644 index 0000000..a4aa4f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/office-chair-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/onigiri-light.svg b/phosphor_orig/SVGs Flat/light/onigiri-light.svg new file mode 100644 index 0000000..ec56e26 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/onigiri-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/open-ai-logo-light.svg b/phosphor_orig/SVGs Flat/light/open-ai-logo-light.svg new file mode 100644 index 0000000..6861d43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/open-ai-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/option-light.svg b/phosphor_orig/SVGs Flat/light/option-light.svg new file mode 100644 index 0000000..2130bbb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/option-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/orange-light.svg b/phosphor_orig/SVGs Flat/light/orange-light.svg new file mode 100644 index 0000000..667b2a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/orange-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/orange-slice-light.svg b/phosphor_orig/SVGs Flat/light/orange-slice-light.svg new file mode 100644 index 0000000..7973f0a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/orange-slice-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/oven-light.svg b/phosphor_orig/SVGs Flat/light/oven-light.svg new file mode 100644 index 0000000..56f5e75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/oven-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/package-light.svg b/phosphor_orig/SVGs Flat/light/package-light.svg new file mode 100644 index 0000000..516f966 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/package-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/paint-brush-broad-light.svg b/phosphor_orig/SVGs Flat/light/paint-brush-broad-light.svg new file mode 100644 index 0000000..573a79d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/paint-brush-broad-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/paint-brush-household-light.svg b/phosphor_orig/SVGs Flat/light/paint-brush-household-light.svg new file mode 100644 index 0000000..72ab7d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/paint-brush-household-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/paint-brush-light.svg b/phosphor_orig/SVGs Flat/light/paint-brush-light.svg new file mode 100644 index 0000000..1c2814d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/paint-brush-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/paint-bucket-light.svg b/phosphor_orig/SVGs Flat/light/paint-bucket-light.svg new file mode 100644 index 0000000..83cc41a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/paint-bucket-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/paint-roller-light.svg b/phosphor_orig/SVGs Flat/light/paint-roller-light.svg new file mode 100644 index 0000000..8e699a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/paint-roller-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/palette-light.svg b/phosphor_orig/SVGs Flat/light/palette-light.svg new file mode 100644 index 0000000..95b9960 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/palette-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/panorama-light.svg b/phosphor_orig/SVGs Flat/light/panorama-light.svg new file mode 100644 index 0000000..ab21dd9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/panorama-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pants-light.svg b/phosphor_orig/SVGs Flat/light/pants-light.svg new file mode 100644 index 0000000..d12b766 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pants-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/paper-plane-light.svg b/phosphor_orig/SVGs Flat/light/paper-plane-light.svg new file mode 100644 index 0000000..54d066d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/paper-plane-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/paper-plane-right-light.svg b/phosphor_orig/SVGs Flat/light/paper-plane-right-light.svg new file mode 100644 index 0000000..6dbbc42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/paper-plane-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/paper-plane-tilt-light.svg b/phosphor_orig/SVGs Flat/light/paper-plane-tilt-light.svg new file mode 100644 index 0000000..9fc2240 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/paper-plane-tilt-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/paperclip-horizontal-light.svg b/phosphor_orig/SVGs Flat/light/paperclip-horizontal-light.svg new file mode 100644 index 0000000..0803dd6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/paperclip-horizontal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/paperclip-light.svg b/phosphor_orig/SVGs Flat/light/paperclip-light.svg new file mode 100644 index 0000000..2afb9ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/paperclip-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/parachute-light.svg b/phosphor_orig/SVGs Flat/light/parachute-light.svg new file mode 100644 index 0000000..fa814eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/parachute-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/paragraph-light.svg b/phosphor_orig/SVGs Flat/light/paragraph-light.svg new file mode 100644 index 0000000..badd830 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/paragraph-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/parallelogram-light.svg b/phosphor_orig/SVGs Flat/light/parallelogram-light.svg new file mode 100644 index 0000000..fa7bf31 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/parallelogram-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/park-light.svg b/phosphor_orig/SVGs Flat/light/park-light.svg new file mode 100644 index 0000000..08e399f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/park-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/password-light.svg b/phosphor_orig/SVGs Flat/light/password-light.svg new file mode 100644 index 0000000..1994790 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/password-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/path-light.svg b/phosphor_orig/SVGs Flat/light/path-light.svg new file mode 100644 index 0000000..b456952 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/path-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/patreon-logo-light.svg b/phosphor_orig/SVGs Flat/light/patreon-logo-light.svg new file mode 100644 index 0000000..42eeed0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/patreon-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pause-circle-light.svg b/phosphor_orig/SVGs Flat/light/pause-circle-light.svg new file mode 100644 index 0000000..ccf9c67 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pause-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pause-light.svg b/phosphor_orig/SVGs Flat/light/pause-light.svg new file mode 100644 index 0000000..a61634c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pause-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/paw-print-light.svg b/phosphor_orig/SVGs Flat/light/paw-print-light.svg new file mode 100644 index 0000000..a87136d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/paw-print-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/paypal-logo-light.svg b/phosphor_orig/SVGs Flat/light/paypal-logo-light.svg new file mode 100644 index 0000000..0aadb0e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/paypal-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/peace-light.svg b/phosphor_orig/SVGs Flat/light/peace-light.svg new file mode 100644 index 0000000..1cf8ee7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/peace-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pen-light.svg b/phosphor_orig/SVGs Flat/light/pen-light.svg new file mode 100644 index 0000000..84aa229 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pen-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pen-nib-light.svg b/phosphor_orig/SVGs Flat/light/pen-nib-light.svg new file mode 100644 index 0000000..a8cf68b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pen-nib-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pen-nib-straight-light.svg b/phosphor_orig/SVGs Flat/light/pen-nib-straight-light.svg new file mode 100644 index 0000000..7ba2144 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pen-nib-straight-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pencil-circle-light.svg b/phosphor_orig/SVGs Flat/light/pencil-circle-light.svg new file mode 100644 index 0000000..cfa3406 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pencil-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pencil-light.svg b/phosphor_orig/SVGs Flat/light/pencil-light.svg new file mode 100644 index 0000000..517ebf0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pencil-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pencil-line-light.svg b/phosphor_orig/SVGs Flat/light/pencil-line-light.svg new file mode 100644 index 0000000..d3c5157 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pencil-line-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pencil-ruler-light.svg b/phosphor_orig/SVGs Flat/light/pencil-ruler-light.svg new file mode 100644 index 0000000..5d38278 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pencil-ruler-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pencil-simple-light.svg b/phosphor_orig/SVGs Flat/light/pencil-simple-light.svg new file mode 100644 index 0000000..598ca8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pencil-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pencil-simple-line-light.svg b/phosphor_orig/SVGs Flat/light/pencil-simple-line-light.svg new file mode 100644 index 0000000..0229058 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pencil-simple-line-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pencil-simple-slash-light.svg b/phosphor_orig/SVGs Flat/light/pencil-simple-slash-light.svg new file mode 100644 index 0000000..a4eea8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pencil-simple-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pencil-slash-light.svg b/phosphor_orig/SVGs Flat/light/pencil-slash-light.svg new file mode 100644 index 0000000..157151e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pencil-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pentagon-light.svg b/phosphor_orig/SVGs Flat/light/pentagon-light.svg new file mode 100644 index 0000000..4ab96df --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pentagon-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pentagram-light.svg b/phosphor_orig/SVGs Flat/light/pentagram-light.svg new file mode 100644 index 0000000..f6cba8d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pentagram-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pepper-light.svg b/phosphor_orig/SVGs Flat/light/pepper-light.svg new file mode 100644 index 0000000..9e78e70 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pepper-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/percent-light.svg b/phosphor_orig/SVGs Flat/light/percent-light.svg new file mode 100644 index 0000000..6323d1d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/percent-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/person-arms-spread-light.svg b/phosphor_orig/SVGs Flat/light/person-arms-spread-light.svg new file mode 100644 index 0000000..d2efcce --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/person-arms-spread-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/person-light.svg b/phosphor_orig/SVGs Flat/light/person-light.svg new file mode 100644 index 0000000..4d2d44f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/person-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/person-simple-bike-light.svg b/phosphor_orig/SVGs Flat/light/person-simple-bike-light.svg new file mode 100644 index 0000000..67bd887 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/person-simple-bike-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/person-simple-circle-light.svg b/phosphor_orig/SVGs Flat/light/person-simple-circle-light.svg new file mode 100644 index 0000000..1955158 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/person-simple-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/person-simple-hike-light.svg b/phosphor_orig/SVGs Flat/light/person-simple-hike-light.svg new file mode 100644 index 0000000..e9fc83e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/person-simple-hike-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/person-simple-light.svg b/phosphor_orig/SVGs Flat/light/person-simple-light.svg new file mode 100644 index 0000000..731200d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/person-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/person-simple-run-light.svg b/phosphor_orig/SVGs Flat/light/person-simple-run-light.svg new file mode 100644 index 0000000..e9e1477 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/person-simple-run-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/person-simple-ski-light.svg b/phosphor_orig/SVGs Flat/light/person-simple-ski-light.svg new file mode 100644 index 0000000..4c6fe9a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/person-simple-ski-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/person-simple-snowboard-light.svg b/phosphor_orig/SVGs Flat/light/person-simple-snowboard-light.svg new file mode 100644 index 0000000..eb248ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/person-simple-snowboard-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/person-simple-swim-light.svg b/phosphor_orig/SVGs Flat/light/person-simple-swim-light.svg new file mode 100644 index 0000000..c96d72f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/person-simple-swim-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/person-simple-tai-chi-light.svg b/phosphor_orig/SVGs Flat/light/person-simple-tai-chi-light.svg new file mode 100644 index 0000000..c5cc067 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/person-simple-tai-chi-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/person-simple-throw-light.svg b/phosphor_orig/SVGs Flat/light/person-simple-throw-light.svg new file mode 100644 index 0000000..08adde0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/person-simple-throw-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/person-simple-walk-light.svg b/phosphor_orig/SVGs Flat/light/person-simple-walk-light.svg new file mode 100644 index 0000000..d785fa0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/person-simple-walk-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/perspective-light.svg b/phosphor_orig/SVGs Flat/light/perspective-light.svg new file mode 100644 index 0000000..73055cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/perspective-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/phone-call-light.svg b/phosphor_orig/SVGs Flat/light/phone-call-light.svg new file mode 100644 index 0000000..0e8b301 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/phone-call-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/phone-disconnect-light.svg b/phosphor_orig/SVGs Flat/light/phone-disconnect-light.svg new file mode 100644 index 0000000..f20f650 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/phone-disconnect-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/phone-incoming-light.svg b/phosphor_orig/SVGs Flat/light/phone-incoming-light.svg new file mode 100644 index 0000000..91051dd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/phone-incoming-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/phone-light.svg b/phosphor_orig/SVGs Flat/light/phone-light.svg new file mode 100644 index 0000000..d28f4be --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/phone-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/phone-list-light.svg b/phosphor_orig/SVGs Flat/light/phone-list-light.svg new file mode 100644 index 0000000..7640f05 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/phone-list-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/phone-outgoing-light.svg b/phosphor_orig/SVGs Flat/light/phone-outgoing-light.svg new file mode 100644 index 0000000..79f66d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/phone-outgoing-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/phone-pause-light.svg b/phosphor_orig/SVGs Flat/light/phone-pause-light.svg new file mode 100644 index 0000000..1a81a84 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/phone-pause-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/phone-plus-light.svg b/phosphor_orig/SVGs Flat/light/phone-plus-light.svg new file mode 100644 index 0000000..d3d289c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/phone-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/phone-slash-light.svg b/phosphor_orig/SVGs Flat/light/phone-slash-light.svg new file mode 100644 index 0000000..25c0f67 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/phone-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/phone-transfer-light.svg b/phosphor_orig/SVGs Flat/light/phone-transfer-light.svg new file mode 100644 index 0000000..731dcf3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/phone-transfer-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/phone-x-light.svg b/phosphor_orig/SVGs Flat/light/phone-x-light.svg new file mode 100644 index 0000000..c72aabd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/phone-x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/phosphor-logo-light.svg b/phosphor_orig/SVGs Flat/light/phosphor-logo-light.svg new file mode 100644 index 0000000..55dff7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/phosphor-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pi-light.svg b/phosphor_orig/SVGs Flat/light/pi-light.svg new file mode 100644 index 0000000..f03e96c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pi-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/piano-keys-light.svg b/phosphor_orig/SVGs Flat/light/piano-keys-light.svg new file mode 100644 index 0000000..9b7e51f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/piano-keys-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/picnic-table-light.svg b/phosphor_orig/SVGs Flat/light/picnic-table-light.svg new file mode 100644 index 0000000..edf5551 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/picnic-table-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/picture-in-picture-light.svg b/phosphor_orig/SVGs Flat/light/picture-in-picture-light.svg new file mode 100644 index 0000000..69aea4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/picture-in-picture-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/piggy-bank-light.svg b/phosphor_orig/SVGs Flat/light/piggy-bank-light.svg new file mode 100644 index 0000000..ad0cbc4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/piggy-bank-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pill-light.svg b/phosphor_orig/SVGs Flat/light/pill-light.svg new file mode 100644 index 0000000..4f6facb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pill-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/ping-pong-light.svg b/phosphor_orig/SVGs Flat/light/ping-pong-light.svg new file mode 100644 index 0000000..227e7b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/ping-pong-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pint-glass-light.svg b/phosphor_orig/SVGs Flat/light/pint-glass-light.svg new file mode 100644 index 0000000..1e7df76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pint-glass-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pinterest-logo-light.svg b/phosphor_orig/SVGs Flat/light/pinterest-logo-light.svg new file mode 100644 index 0000000..0ed1d73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pinterest-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pinwheel-light.svg b/phosphor_orig/SVGs Flat/light/pinwheel-light.svg new file mode 100644 index 0000000..f3a3c2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pinwheel-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pipe-light.svg b/phosphor_orig/SVGs Flat/light/pipe-light.svg new file mode 100644 index 0000000..41d6dcc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pipe-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pipe-wrench-light.svg b/phosphor_orig/SVGs Flat/light/pipe-wrench-light.svg new file mode 100644 index 0000000..41b8f6f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pipe-wrench-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pix-logo-light.svg b/phosphor_orig/SVGs Flat/light/pix-logo-light.svg new file mode 100644 index 0000000..50ae6eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pix-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pizza-light.svg b/phosphor_orig/SVGs Flat/light/pizza-light.svg new file mode 100644 index 0000000..bc6da16 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pizza-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/placeholder-light.svg b/phosphor_orig/SVGs Flat/light/placeholder-light.svg new file mode 100644 index 0000000..36645b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/placeholder-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/planet-light.svg b/phosphor_orig/SVGs Flat/light/planet-light.svg new file mode 100644 index 0000000..6ba4948 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/planet-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/plant-light.svg b/phosphor_orig/SVGs Flat/light/plant-light.svg new file mode 100644 index 0000000..e7c1d85 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/plant-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/play-circle-light.svg b/phosphor_orig/SVGs Flat/light/play-circle-light.svg new file mode 100644 index 0000000..060fae9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/play-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/play-light.svg b/phosphor_orig/SVGs Flat/light/play-light.svg new file mode 100644 index 0000000..291077b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/play-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/play-pause-light.svg b/phosphor_orig/SVGs Flat/light/play-pause-light.svg new file mode 100644 index 0000000..d4d54ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/play-pause-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/playlist-light.svg b/phosphor_orig/SVGs Flat/light/playlist-light.svg new file mode 100644 index 0000000..9254930 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/playlist-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/plug-charging-light.svg b/phosphor_orig/SVGs Flat/light/plug-charging-light.svg new file mode 100644 index 0000000..30a1a13 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/plug-charging-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/plug-light.svg b/phosphor_orig/SVGs Flat/light/plug-light.svg new file mode 100644 index 0000000..28a7fbb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/plug-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/plugs-connected-light.svg b/phosphor_orig/SVGs Flat/light/plugs-connected-light.svg new file mode 100644 index 0000000..35720a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/plugs-connected-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/plugs-light.svg b/phosphor_orig/SVGs Flat/light/plugs-light.svg new file mode 100644 index 0000000..7c63270 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/plugs-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/plus-circle-light.svg b/phosphor_orig/SVGs Flat/light/plus-circle-light.svg new file mode 100644 index 0000000..5214f0b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/plus-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/plus-light.svg b/phosphor_orig/SVGs Flat/light/plus-light.svg new file mode 100644 index 0000000..809ff0e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/plus-minus-light.svg b/phosphor_orig/SVGs Flat/light/plus-minus-light.svg new file mode 100644 index 0000000..fccc8f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/plus-minus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/plus-square-light.svg b/phosphor_orig/SVGs Flat/light/plus-square-light.svg new file mode 100644 index 0000000..5f2840e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/plus-square-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/poker-chip-light.svg b/phosphor_orig/SVGs Flat/light/poker-chip-light.svg new file mode 100644 index 0000000..fda3d49 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/poker-chip-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/police-car-light.svg b/phosphor_orig/SVGs Flat/light/police-car-light.svg new file mode 100644 index 0000000..1ea6288 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/police-car-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/polygon-light.svg b/phosphor_orig/SVGs Flat/light/polygon-light.svg new file mode 100644 index 0000000..5744481 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/polygon-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/popcorn-light.svg b/phosphor_orig/SVGs Flat/light/popcorn-light.svg new file mode 100644 index 0000000..c8e5fa8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/popcorn-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/popsicle-light.svg b/phosphor_orig/SVGs Flat/light/popsicle-light.svg new file mode 100644 index 0000000..3fa65bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/popsicle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/potted-plant-light.svg b/phosphor_orig/SVGs Flat/light/potted-plant-light.svg new file mode 100644 index 0000000..39c7347 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/potted-plant-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/power-light.svg b/phosphor_orig/SVGs Flat/light/power-light.svg new file mode 100644 index 0000000..3d57983 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/power-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/prescription-light.svg b/phosphor_orig/SVGs Flat/light/prescription-light.svg new file mode 100644 index 0000000..64aa962 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/prescription-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/presentation-chart-light.svg b/phosphor_orig/SVGs Flat/light/presentation-chart-light.svg new file mode 100644 index 0000000..4fbd9da --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/presentation-chart-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/presentation-light.svg b/phosphor_orig/SVGs Flat/light/presentation-light.svg new file mode 100644 index 0000000..f57ef63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/presentation-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/printer-light.svg b/phosphor_orig/SVGs Flat/light/printer-light.svg new file mode 100644 index 0000000..a9ce717 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/printer-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/prohibit-inset-light.svg b/phosphor_orig/SVGs Flat/light/prohibit-inset-light.svg new file mode 100644 index 0000000..03c26f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/prohibit-inset-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/prohibit-light.svg b/phosphor_orig/SVGs Flat/light/prohibit-light.svg new file mode 100644 index 0000000..b34043e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/prohibit-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/projector-screen-chart-light.svg b/phosphor_orig/SVGs Flat/light/projector-screen-chart-light.svg new file mode 100644 index 0000000..c28bf55 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/projector-screen-chart-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/projector-screen-light.svg b/phosphor_orig/SVGs Flat/light/projector-screen-light.svg new file mode 100644 index 0000000..b7275ce --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/projector-screen-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/pulse-light.svg b/phosphor_orig/SVGs Flat/light/pulse-light.svg new file mode 100644 index 0000000..8dc9703 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/pulse-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/push-pin-light.svg b/phosphor_orig/SVGs Flat/light/push-pin-light.svg new file mode 100644 index 0000000..5e1041b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/push-pin-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/push-pin-simple-light.svg b/phosphor_orig/SVGs Flat/light/push-pin-simple-light.svg new file mode 100644 index 0000000..0bbe446 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/push-pin-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/push-pin-simple-slash-light.svg b/phosphor_orig/SVGs Flat/light/push-pin-simple-slash-light.svg new file mode 100644 index 0000000..b9dd92d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/push-pin-simple-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/push-pin-slash-light.svg b/phosphor_orig/SVGs Flat/light/push-pin-slash-light.svg new file mode 100644 index 0000000..c0b4ecd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/push-pin-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/puzzle-piece-light.svg b/phosphor_orig/SVGs Flat/light/puzzle-piece-light.svg new file mode 100644 index 0000000..57d6fb0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/puzzle-piece-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/qr-code-light.svg b/phosphor_orig/SVGs Flat/light/qr-code-light.svg new file mode 100644 index 0000000..f6d4987 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/qr-code-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/question-light.svg b/phosphor_orig/SVGs Flat/light/question-light.svg new file mode 100644 index 0000000..9b7e33b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/question-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/question-mark-light.svg b/phosphor_orig/SVGs Flat/light/question-mark-light.svg new file mode 100644 index 0000000..aaca3ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/question-mark-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/queue-light.svg b/phosphor_orig/SVGs Flat/light/queue-light.svg new file mode 100644 index 0000000..87bd31d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/queue-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/quotes-light.svg b/phosphor_orig/SVGs Flat/light/quotes-light.svg new file mode 100644 index 0000000..b1d71b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/quotes-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/rabbit-light.svg b/phosphor_orig/SVGs Flat/light/rabbit-light.svg new file mode 100644 index 0000000..183610b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/rabbit-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/racquet-light.svg b/phosphor_orig/SVGs Flat/light/racquet-light.svg new file mode 100644 index 0000000..d190b9b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/racquet-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/radical-light.svg b/phosphor_orig/SVGs Flat/light/radical-light.svg new file mode 100644 index 0000000..e1830cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/radical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/radio-button-light.svg b/phosphor_orig/SVGs Flat/light/radio-button-light.svg new file mode 100644 index 0000000..565ccdb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/radio-button-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/radio-light.svg b/phosphor_orig/SVGs Flat/light/radio-light.svg new file mode 100644 index 0000000..5c16498 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/radio-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/radioactive-light.svg b/phosphor_orig/SVGs Flat/light/radioactive-light.svg new file mode 100644 index 0000000..c593457 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/radioactive-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/rainbow-cloud-light.svg b/phosphor_orig/SVGs Flat/light/rainbow-cloud-light.svg new file mode 100644 index 0000000..1e6e4ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/rainbow-cloud-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/rainbow-light.svg b/phosphor_orig/SVGs Flat/light/rainbow-light.svg new file mode 100644 index 0000000..cae6ee3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/rainbow-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/ranking-light.svg b/phosphor_orig/SVGs Flat/light/ranking-light.svg new file mode 100644 index 0000000..61b21ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/ranking-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/read-cv-logo-light.svg b/phosphor_orig/SVGs Flat/light/read-cv-logo-light.svg new file mode 100644 index 0000000..7e85416 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/read-cv-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/receipt-light.svg b/phosphor_orig/SVGs Flat/light/receipt-light.svg new file mode 100644 index 0000000..3ca5cb2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/receipt-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/receipt-x-light.svg b/phosphor_orig/SVGs Flat/light/receipt-x-light.svg new file mode 100644 index 0000000..c2367d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/receipt-x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/record-light.svg b/phosphor_orig/SVGs Flat/light/record-light.svg new file mode 100644 index 0000000..6147946 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/record-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/rectangle-dashed-light.svg b/phosphor_orig/SVGs Flat/light/rectangle-dashed-light.svg new file mode 100644 index 0000000..4710434 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/rectangle-dashed-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/rectangle-light.svg b/phosphor_orig/SVGs Flat/light/rectangle-light.svg new file mode 100644 index 0000000..33c0005 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/rectangle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/recycle-light.svg b/phosphor_orig/SVGs Flat/light/recycle-light.svg new file mode 100644 index 0000000..f1d610b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/recycle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/reddit-logo-light.svg b/phosphor_orig/SVGs Flat/light/reddit-logo-light.svg new file mode 100644 index 0000000..9c63b75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/reddit-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/repeat-light.svg b/phosphor_orig/SVGs Flat/light/repeat-light.svg new file mode 100644 index 0000000..76f63fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/repeat-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/repeat-once-light.svg b/phosphor_orig/SVGs Flat/light/repeat-once-light.svg new file mode 100644 index 0000000..c4b7441 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/repeat-once-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/replit-logo-light.svg b/phosphor_orig/SVGs Flat/light/replit-logo-light.svg new file mode 100644 index 0000000..1bf95ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/replit-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/resize-light.svg b/phosphor_orig/SVGs Flat/light/resize-light.svg new file mode 100644 index 0000000..57fe1bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/resize-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/rewind-circle-light.svg b/phosphor_orig/SVGs Flat/light/rewind-circle-light.svg new file mode 100644 index 0000000..607ff99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/rewind-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/rewind-light.svg b/phosphor_orig/SVGs Flat/light/rewind-light.svg new file mode 100644 index 0000000..8322380 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/rewind-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/road-horizon-light.svg b/phosphor_orig/SVGs Flat/light/road-horizon-light.svg new file mode 100644 index 0000000..39f3992 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/road-horizon-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/robot-light.svg b/phosphor_orig/SVGs Flat/light/robot-light.svg new file mode 100644 index 0000000..bf28771 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/robot-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/rocket-launch-light.svg b/phosphor_orig/SVGs Flat/light/rocket-launch-light.svg new file mode 100644 index 0000000..1bb1173 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/rocket-launch-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/rocket-light.svg b/phosphor_orig/SVGs Flat/light/rocket-light.svg new file mode 100644 index 0000000..2c02285 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/rocket-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/rows-light.svg b/phosphor_orig/SVGs Flat/light/rows-light.svg new file mode 100644 index 0000000..23ededf --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/rows-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/rows-plus-bottom-light.svg b/phosphor_orig/SVGs Flat/light/rows-plus-bottom-light.svg new file mode 100644 index 0000000..47ec739 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/rows-plus-bottom-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/rows-plus-top-light.svg b/phosphor_orig/SVGs Flat/light/rows-plus-top-light.svg new file mode 100644 index 0000000..41137f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/rows-plus-top-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/rss-light.svg b/phosphor_orig/SVGs Flat/light/rss-light.svg new file mode 100644 index 0000000..9e5fdaa --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/rss-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/rss-simple-light.svg b/phosphor_orig/SVGs Flat/light/rss-simple-light.svg new file mode 100644 index 0000000..0590cd7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/rss-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/rug-light.svg b/phosphor_orig/SVGs Flat/light/rug-light.svg new file mode 100644 index 0000000..4e3b1cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/rug-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/ruler-light.svg b/phosphor_orig/SVGs Flat/light/ruler-light.svg new file mode 100644 index 0000000..eb326ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/ruler-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sailboat-light.svg b/phosphor_orig/SVGs Flat/light/sailboat-light.svg new file mode 100644 index 0000000..4d18526 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sailboat-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/scales-light.svg b/phosphor_orig/SVGs Flat/light/scales-light.svg new file mode 100644 index 0000000..7fda574 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/scales-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/scan-light.svg b/phosphor_orig/SVGs Flat/light/scan-light.svg new file mode 100644 index 0000000..6bfc207 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/scan-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/scan-smiley-light.svg b/phosphor_orig/SVGs Flat/light/scan-smiley-light.svg new file mode 100644 index 0000000..7669065 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/scan-smiley-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/scissors-light.svg b/phosphor_orig/SVGs Flat/light/scissors-light.svg new file mode 100644 index 0000000..72a027b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/scissors-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/scooter-light.svg b/phosphor_orig/SVGs Flat/light/scooter-light.svg new file mode 100644 index 0000000..a0b749b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/scooter-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/screencast-light.svg b/phosphor_orig/SVGs Flat/light/screencast-light.svg new file mode 100644 index 0000000..aea3bea --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/screencast-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/screwdriver-light.svg b/phosphor_orig/SVGs Flat/light/screwdriver-light.svg new file mode 100644 index 0000000..28f2824 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/screwdriver-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/scribble-light.svg b/phosphor_orig/SVGs Flat/light/scribble-light.svg new file mode 100644 index 0000000..5fe0fbc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/scribble-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/scribble-loop-light.svg b/phosphor_orig/SVGs Flat/light/scribble-loop-light.svg new file mode 100644 index 0000000..0c25d54 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/scribble-loop-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/scroll-light.svg b/phosphor_orig/SVGs Flat/light/scroll-light.svg new file mode 100644 index 0000000..a6f2726 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/scroll-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/seal-check-light.svg b/phosphor_orig/SVGs Flat/light/seal-check-light.svg new file mode 100644 index 0000000..c44fa69 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/seal-check-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/seal-light.svg b/phosphor_orig/SVGs Flat/light/seal-light.svg new file mode 100644 index 0000000..f4060ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/seal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/seal-percent-light.svg b/phosphor_orig/SVGs Flat/light/seal-percent-light.svg new file mode 100644 index 0000000..8b58353 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/seal-percent-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/seal-question-light.svg b/phosphor_orig/SVGs Flat/light/seal-question-light.svg new file mode 100644 index 0000000..6cda7d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/seal-question-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/seal-warning-light.svg b/phosphor_orig/SVGs Flat/light/seal-warning-light.svg new file mode 100644 index 0000000..e344b8d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/seal-warning-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/seat-light.svg b/phosphor_orig/SVGs Flat/light/seat-light.svg new file mode 100644 index 0000000..7777a29 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/seat-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/seatbelt-light.svg b/phosphor_orig/SVGs Flat/light/seatbelt-light.svg new file mode 100644 index 0000000..955436a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/seatbelt-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/security-camera-light.svg b/phosphor_orig/SVGs Flat/light/security-camera-light.svg new file mode 100644 index 0000000..ef91703 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/security-camera-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/selection-all-light.svg b/phosphor_orig/SVGs Flat/light/selection-all-light.svg new file mode 100644 index 0000000..8a3abe8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/selection-all-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/selection-background-light.svg b/phosphor_orig/SVGs Flat/light/selection-background-light.svg new file mode 100644 index 0000000..aa438ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/selection-background-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/selection-foreground-light.svg b/phosphor_orig/SVGs Flat/light/selection-foreground-light.svg new file mode 100644 index 0000000..f05f228 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/selection-foreground-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/selection-inverse-light.svg b/phosphor_orig/SVGs Flat/light/selection-inverse-light.svg new file mode 100644 index 0000000..1e555ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/selection-inverse-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/selection-light.svg b/phosphor_orig/SVGs Flat/light/selection-light.svg new file mode 100644 index 0000000..40f138f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/selection-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/selection-plus-light.svg b/phosphor_orig/SVGs Flat/light/selection-plus-light.svg new file mode 100644 index 0000000..fd66381 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/selection-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/selection-slash-light.svg b/phosphor_orig/SVGs Flat/light/selection-slash-light.svg new file mode 100644 index 0000000..9c1bde6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/selection-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shapes-light.svg b/phosphor_orig/SVGs Flat/light/shapes-light.svg new file mode 100644 index 0000000..76dbf0a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shapes-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/share-fat-light.svg b/phosphor_orig/SVGs Flat/light/share-fat-light.svg new file mode 100644 index 0000000..4b71d99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/share-fat-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/share-light.svg b/phosphor_orig/SVGs Flat/light/share-light.svg new file mode 100644 index 0000000..7abac79 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/share-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/share-network-light.svg b/phosphor_orig/SVGs Flat/light/share-network-light.svg new file mode 100644 index 0000000..1f39352 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/share-network-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shield-check-light.svg b/phosphor_orig/SVGs Flat/light/shield-check-light.svg new file mode 100644 index 0000000..9fcaf23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shield-check-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shield-checkered-light.svg b/phosphor_orig/SVGs Flat/light/shield-checkered-light.svg new file mode 100644 index 0000000..35b553d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shield-checkered-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shield-chevron-light.svg b/phosphor_orig/SVGs Flat/light/shield-chevron-light.svg new file mode 100644 index 0000000..9d49574 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shield-chevron-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shield-light.svg b/phosphor_orig/SVGs Flat/light/shield-light.svg new file mode 100644 index 0000000..9370d9a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shield-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shield-plus-light.svg b/phosphor_orig/SVGs Flat/light/shield-plus-light.svg new file mode 100644 index 0000000..44bbbf4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shield-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shield-slash-light.svg b/phosphor_orig/SVGs Flat/light/shield-slash-light.svg new file mode 100644 index 0000000..df448fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shield-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shield-star-light.svg b/phosphor_orig/SVGs Flat/light/shield-star-light.svg new file mode 100644 index 0000000..958d08a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shield-star-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shield-warning-light.svg b/phosphor_orig/SVGs Flat/light/shield-warning-light.svg new file mode 100644 index 0000000..b0c2e57 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shield-warning-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shipping-container-light.svg b/phosphor_orig/SVGs Flat/light/shipping-container-light.svg new file mode 100644 index 0000000..e561419 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shipping-container-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shirt-folded-light.svg b/phosphor_orig/SVGs Flat/light/shirt-folded-light.svg new file mode 100644 index 0000000..814fcb1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shirt-folded-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shooting-star-light.svg b/phosphor_orig/SVGs Flat/light/shooting-star-light.svg new file mode 100644 index 0000000..1ec98aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shooting-star-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shopping-bag-light.svg b/phosphor_orig/SVGs Flat/light/shopping-bag-light.svg new file mode 100644 index 0000000..9ab0876 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shopping-bag-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shopping-bag-open-light.svg b/phosphor_orig/SVGs Flat/light/shopping-bag-open-light.svg new file mode 100644 index 0000000..b04b296 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shopping-bag-open-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shopping-cart-light.svg b/phosphor_orig/SVGs Flat/light/shopping-cart-light.svg new file mode 100644 index 0000000..2b5444f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shopping-cart-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shopping-cart-simple-light.svg b/phosphor_orig/SVGs Flat/light/shopping-cart-simple-light.svg new file mode 100644 index 0000000..654a3a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shopping-cart-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shovel-light.svg b/phosphor_orig/SVGs Flat/light/shovel-light.svg new file mode 100644 index 0000000..2025a77 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shovel-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shower-light.svg b/phosphor_orig/SVGs Flat/light/shower-light.svg new file mode 100644 index 0000000..74ce555 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shower-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shrimp-light.svg b/phosphor_orig/SVGs Flat/light/shrimp-light.svg new file mode 100644 index 0000000..e5a1739 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shrimp-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shuffle-angular-light.svg b/phosphor_orig/SVGs Flat/light/shuffle-angular-light.svg new file mode 100644 index 0000000..8620811 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shuffle-angular-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shuffle-light.svg b/phosphor_orig/SVGs Flat/light/shuffle-light.svg new file mode 100644 index 0000000..4dc27fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shuffle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/shuffle-simple-light.svg b/phosphor_orig/SVGs Flat/light/shuffle-simple-light.svg new file mode 100644 index 0000000..c7eeb39 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/shuffle-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sidebar-light.svg b/phosphor_orig/SVGs Flat/light/sidebar-light.svg new file mode 100644 index 0000000..91c28a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sidebar-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sidebar-simple-light.svg b/phosphor_orig/SVGs Flat/light/sidebar-simple-light.svg new file mode 100644 index 0000000..49c9e16 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sidebar-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sigma-light.svg b/phosphor_orig/SVGs Flat/light/sigma-light.svg new file mode 100644 index 0000000..8d19cf4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sigma-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sign-in-light.svg b/phosphor_orig/SVGs Flat/light/sign-in-light.svg new file mode 100644 index 0000000..9ef3499 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sign-in-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sign-out-light.svg b/phosphor_orig/SVGs Flat/light/sign-out-light.svg new file mode 100644 index 0000000..cd728a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sign-out-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/signature-light.svg b/phosphor_orig/SVGs Flat/light/signature-light.svg new file mode 100644 index 0000000..fd5f1eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/signature-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/signpost-light.svg b/phosphor_orig/SVGs Flat/light/signpost-light.svg new file mode 100644 index 0000000..0b15ff9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/signpost-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sim-card-light.svg b/phosphor_orig/SVGs Flat/light/sim-card-light.svg new file mode 100644 index 0000000..bde75bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sim-card-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/siren-light.svg b/phosphor_orig/SVGs Flat/light/siren-light.svg new file mode 100644 index 0000000..0beb3a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/siren-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sketch-logo-light.svg b/phosphor_orig/SVGs Flat/light/sketch-logo-light.svg new file mode 100644 index 0000000..5b01881 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sketch-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/skip-back-circle-light.svg b/phosphor_orig/SVGs Flat/light/skip-back-circle-light.svg new file mode 100644 index 0000000..61ed0c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/skip-back-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/skip-back-light.svg b/phosphor_orig/SVGs Flat/light/skip-back-light.svg new file mode 100644 index 0000000..82ed0b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/skip-back-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/skip-forward-circle-light.svg b/phosphor_orig/SVGs Flat/light/skip-forward-circle-light.svg new file mode 100644 index 0000000..d0a38fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/skip-forward-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/skip-forward-light.svg b/phosphor_orig/SVGs Flat/light/skip-forward-light.svg new file mode 100644 index 0000000..1f6d575 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/skip-forward-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/skull-light.svg b/phosphor_orig/SVGs Flat/light/skull-light.svg new file mode 100644 index 0000000..ae5d3ff --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/skull-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/skype-logo-light.svg b/phosphor_orig/SVGs Flat/light/skype-logo-light.svg new file mode 100644 index 0000000..ae6f975 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/skype-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/slack-logo-light.svg b/phosphor_orig/SVGs Flat/light/slack-logo-light.svg new file mode 100644 index 0000000..4488b63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/slack-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sliders-horizontal-light.svg b/phosphor_orig/SVGs Flat/light/sliders-horizontal-light.svg new file mode 100644 index 0000000..740cefd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sliders-horizontal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sliders-light.svg b/phosphor_orig/SVGs Flat/light/sliders-light.svg new file mode 100644 index 0000000..fa44523 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sliders-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/slideshow-light.svg b/phosphor_orig/SVGs Flat/light/slideshow-light.svg new file mode 100644 index 0000000..e22e311 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/slideshow-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/smiley-angry-light.svg b/phosphor_orig/SVGs Flat/light/smiley-angry-light.svg new file mode 100644 index 0000000..c1343e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/smiley-angry-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/smiley-blank-light.svg b/phosphor_orig/SVGs Flat/light/smiley-blank-light.svg new file mode 100644 index 0000000..ad70aa8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/smiley-blank-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/smiley-light.svg b/phosphor_orig/SVGs Flat/light/smiley-light.svg new file mode 100644 index 0000000..78574d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/smiley-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/smiley-meh-light.svg b/phosphor_orig/SVGs Flat/light/smiley-meh-light.svg new file mode 100644 index 0000000..33b3fa1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/smiley-meh-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/smiley-melting-light.svg b/phosphor_orig/SVGs Flat/light/smiley-melting-light.svg new file mode 100644 index 0000000..242ddcd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/smiley-melting-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/smiley-nervous-light.svg b/phosphor_orig/SVGs Flat/light/smiley-nervous-light.svg new file mode 100644 index 0000000..ebb83a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/smiley-nervous-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/smiley-sad-light.svg b/phosphor_orig/SVGs Flat/light/smiley-sad-light.svg new file mode 100644 index 0000000..14b1d36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/smiley-sad-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/smiley-sticker-light.svg b/phosphor_orig/SVGs Flat/light/smiley-sticker-light.svg new file mode 100644 index 0000000..22bf59f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/smiley-sticker-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/smiley-wink-light.svg b/phosphor_orig/SVGs Flat/light/smiley-wink-light.svg new file mode 100644 index 0000000..64e2a8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/smiley-wink-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/smiley-x-eyes-light.svg b/phosphor_orig/SVGs Flat/light/smiley-x-eyes-light.svg new file mode 100644 index 0000000..6431cf3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/smiley-x-eyes-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/snapchat-logo-light.svg b/phosphor_orig/SVGs Flat/light/snapchat-logo-light.svg new file mode 100644 index 0000000..049f09d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/snapchat-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sneaker-light.svg b/phosphor_orig/SVGs Flat/light/sneaker-light.svg new file mode 100644 index 0000000..8134dad --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sneaker-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sneaker-move-light.svg b/phosphor_orig/SVGs Flat/light/sneaker-move-light.svg new file mode 100644 index 0000000..18f0554 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sneaker-move-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/snowflake-light.svg b/phosphor_orig/SVGs Flat/light/snowflake-light.svg new file mode 100644 index 0000000..08b2273 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/snowflake-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/soccer-ball-light.svg b/phosphor_orig/SVGs Flat/light/soccer-ball-light.svg new file mode 100644 index 0000000..e907784 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/soccer-ball-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sock-light.svg b/phosphor_orig/SVGs Flat/light/sock-light.svg new file mode 100644 index 0000000..eeb8359 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sock-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/solar-panel-light.svg b/phosphor_orig/SVGs Flat/light/solar-panel-light.svg new file mode 100644 index 0000000..abe7fcc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/solar-panel-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/solar-roof-light.svg b/phosphor_orig/SVGs Flat/light/solar-roof-light.svg new file mode 100644 index 0000000..bc462cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/solar-roof-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sort-ascending-light.svg b/phosphor_orig/SVGs Flat/light/sort-ascending-light.svg new file mode 100644 index 0000000..f268abb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sort-ascending-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sort-descending-light.svg b/phosphor_orig/SVGs Flat/light/sort-descending-light.svg new file mode 100644 index 0000000..4f93ceb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sort-descending-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/soundcloud-logo-light.svg b/phosphor_orig/SVGs Flat/light/soundcloud-logo-light.svg new file mode 100644 index 0000000..a894adc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/soundcloud-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/spade-light.svg b/phosphor_orig/SVGs Flat/light/spade-light.svg new file mode 100644 index 0000000..b1290dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/spade-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sparkle-light.svg b/phosphor_orig/SVGs Flat/light/sparkle-light.svg new file mode 100644 index 0000000..fa39b66 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sparkle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/speaker-hifi-light.svg b/phosphor_orig/SVGs Flat/light/speaker-hifi-light.svg new file mode 100644 index 0000000..46d1cb9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/speaker-hifi-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/speaker-high-light.svg b/phosphor_orig/SVGs Flat/light/speaker-high-light.svg new file mode 100644 index 0000000..9d54fa6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/speaker-high-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/speaker-low-light.svg b/phosphor_orig/SVGs Flat/light/speaker-low-light.svg new file mode 100644 index 0000000..1831b9b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/speaker-low-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/speaker-none-light.svg b/phosphor_orig/SVGs Flat/light/speaker-none-light.svg new file mode 100644 index 0000000..bd593e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/speaker-none-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/speaker-simple-high-light.svg b/phosphor_orig/SVGs Flat/light/speaker-simple-high-light.svg new file mode 100644 index 0000000..ac68bb5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/speaker-simple-high-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/speaker-simple-low-light.svg b/phosphor_orig/SVGs Flat/light/speaker-simple-low-light.svg new file mode 100644 index 0000000..4789f8e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/speaker-simple-low-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/speaker-simple-none-light.svg b/phosphor_orig/SVGs Flat/light/speaker-simple-none-light.svg new file mode 100644 index 0000000..67b3998 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/speaker-simple-none-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/speaker-simple-slash-light.svg b/phosphor_orig/SVGs Flat/light/speaker-simple-slash-light.svg new file mode 100644 index 0000000..7404b92 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/speaker-simple-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/speaker-simple-x-light.svg b/phosphor_orig/SVGs Flat/light/speaker-simple-x-light.svg new file mode 100644 index 0000000..4c19e05 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/speaker-simple-x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/speaker-slash-light.svg b/phosphor_orig/SVGs Flat/light/speaker-slash-light.svg new file mode 100644 index 0000000..9a01674 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/speaker-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/speaker-x-light.svg b/phosphor_orig/SVGs Flat/light/speaker-x-light.svg new file mode 100644 index 0000000..afbf660 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/speaker-x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/speedometer-light.svg b/phosphor_orig/SVGs Flat/light/speedometer-light.svg new file mode 100644 index 0000000..58e7a94 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/speedometer-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sphere-light.svg b/phosphor_orig/SVGs Flat/light/sphere-light.svg new file mode 100644 index 0000000..c5526b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sphere-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/spinner-ball-light.svg b/phosphor_orig/SVGs Flat/light/spinner-ball-light.svg new file mode 100644 index 0000000..1dba0e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/spinner-ball-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/spinner-gap-light.svg b/phosphor_orig/SVGs Flat/light/spinner-gap-light.svg new file mode 100644 index 0000000..f2ee032 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/spinner-gap-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/spinner-light.svg b/phosphor_orig/SVGs Flat/light/spinner-light.svg new file mode 100644 index 0000000..c0ccf33 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/spinner-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/spiral-light.svg b/phosphor_orig/SVGs Flat/light/spiral-light.svg new file mode 100644 index 0000000..692ced1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/spiral-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/split-horizontal-light.svg b/phosphor_orig/SVGs Flat/light/split-horizontal-light.svg new file mode 100644 index 0000000..b898a8b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/split-horizontal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/split-vertical-light.svg b/phosphor_orig/SVGs Flat/light/split-vertical-light.svg new file mode 100644 index 0000000..30922e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/split-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/spotify-logo-light.svg b/phosphor_orig/SVGs Flat/light/spotify-logo-light.svg new file mode 100644 index 0000000..8b86fb4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/spotify-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/spray-bottle-light.svg b/phosphor_orig/SVGs Flat/light/spray-bottle-light.svg new file mode 100644 index 0000000..3145b56 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/spray-bottle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/square-half-bottom-light.svg b/phosphor_orig/SVGs Flat/light/square-half-bottom-light.svg new file mode 100644 index 0000000..49f6c88 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/square-half-bottom-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/square-half-light.svg b/phosphor_orig/SVGs Flat/light/square-half-light.svg new file mode 100644 index 0000000..b1a49d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/square-half-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/square-light.svg b/phosphor_orig/SVGs Flat/light/square-light.svg new file mode 100644 index 0000000..b71b826 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/square-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/square-logo-light.svg b/phosphor_orig/SVGs Flat/light/square-logo-light.svg new file mode 100644 index 0000000..9419feb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/square-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/square-split-horizontal-light.svg b/phosphor_orig/SVGs Flat/light/square-split-horizontal-light.svg new file mode 100644 index 0000000..d19408a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/square-split-horizontal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/square-split-vertical-light.svg b/phosphor_orig/SVGs Flat/light/square-split-vertical-light.svg new file mode 100644 index 0000000..671d0fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/square-split-vertical-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/squares-four-light.svg b/phosphor_orig/SVGs Flat/light/squares-four-light.svg new file mode 100644 index 0000000..e807809 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/squares-four-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/stack-light.svg b/phosphor_orig/SVGs Flat/light/stack-light.svg new file mode 100644 index 0000000..fe9dcf7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/stack-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/stack-minus-light.svg b/phosphor_orig/SVGs Flat/light/stack-minus-light.svg new file mode 100644 index 0000000..7814da3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/stack-minus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/stack-overflow-logo-light.svg b/phosphor_orig/SVGs Flat/light/stack-overflow-logo-light.svg new file mode 100644 index 0000000..274378f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/stack-overflow-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/stack-plus-light.svg b/phosphor_orig/SVGs Flat/light/stack-plus-light.svg new file mode 100644 index 0000000..41552fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/stack-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/stack-simple-light.svg b/phosphor_orig/SVGs Flat/light/stack-simple-light.svg new file mode 100644 index 0000000..78f4883 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/stack-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/stairs-light.svg b/phosphor_orig/SVGs Flat/light/stairs-light.svg new file mode 100644 index 0000000..d637b84 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/stairs-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/stamp-light.svg b/phosphor_orig/SVGs Flat/light/stamp-light.svg new file mode 100644 index 0000000..cc1b58f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/stamp-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/standard-definition-light.svg b/phosphor_orig/SVGs Flat/light/standard-definition-light.svg new file mode 100644 index 0000000..6e73e3c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/standard-definition-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/star-and-crescent-light.svg b/phosphor_orig/SVGs Flat/light/star-and-crescent-light.svg new file mode 100644 index 0000000..6e95038 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/star-and-crescent-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/star-four-light.svg b/phosphor_orig/SVGs Flat/light/star-four-light.svg new file mode 100644 index 0000000..e7a2ba9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/star-four-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/star-half-light.svg b/phosphor_orig/SVGs Flat/light/star-half-light.svg new file mode 100644 index 0000000..0ce2dd8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/star-half-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/star-light.svg b/phosphor_orig/SVGs Flat/light/star-light.svg new file mode 100644 index 0000000..1c8d77b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/star-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/star-of-david-light.svg b/phosphor_orig/SVGs Flat/light/star-of-david-light.svg new file mode 100644 index 0000000..6ac3464 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/star-of-david-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/steam-logo-light.svg b/phosphor_orig/SVGs Flat/light/steam-logo-light.svg new file mode 100644 index 0000000..935c0e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/steam-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/steering-wheel-light.svg b/phosphor_orig/SVGs Flat/light/steering-wheel-light.svg new file mode 100644 index 0000000..feb4bb8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/steering-wheel-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/steps-light.svg b/phosphor_orig/SVGs Flat/light/steps-light.svg new file mode 100644 index 0000000..7119808 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/steps-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/stethoscope-light.svg b/phosphor_orig/SVGs Flat/light/stethoscope-light.svg new file mode 100644 index 0000000..44072e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/stethoscope-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sticker-light.svg b/phosphor_orig/SVGs Flat/light/sticker-light.svg new file mode 100644 index 0000000..b2f8013 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sticker-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/stool-light.svg b/phosphor_orig/SVGs Flat/light/stool-light.svg new file mode 100644 index 0000000..1719de7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/stool-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/stop-circle-light.svg b/phosphor_orig/SVGs Flat/light/stop-circle-light.svg new file mode 100644 index 0000000..f6039c2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/stop-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/stop-light.svg b/phosphor_orig/SVGs Flat/light/stop-light.svg new file mode 100644 index 0000000..4064f9a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/stop-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/storefront-light.svg b/phosphor_orig/SVGs Flat/light/storefront-light.svg new file mode 100644 index 0000000..cc2d04d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/storefront-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/strategy-light.svg b/phosphor_orig/SVGs Flat/light/strategy-light.svg new file mode 100644 index 0000000..0e7b853 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/strategy-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/stripe-logo-light.svg b/phosphor_orig/SVGs Flat/light/stripe-logo-light.svg new file mode 100644 index 0000000..911326f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/stripe-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/student-light.svg b/phosphor_orig/SVGs Flat/light/student-light.svg new file mode 100644 index 0000000..97a12a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/student-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/subset-of-light.svg b/phosphor_orig/SVGs Flat/light/subset-of-light.svg new file mode 100644 index 0000000..854f19d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/subset-of-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/subset-proper-of-light.svg b/phosphor_orig/SVGs Flat/light/subset-proper-of-light.svg new file mode 100644 index 0000000..f096690 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/subset-proper-of-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/subtitles-light.svg b/phosphor_orig/SVGs Flat/light/subtitles-light.svg new file mode 100644 index 0000000..dcd4096 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/subtitles-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/subtitles-slash-light.svg b/phosphor_orig/SVGs Flat/light/subtitles-slash-light.svg new file mode 100644 index 0000000..98367e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/subtitles-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/subtract-light.svg b/phosphor_orig/SVGs Flat/light/subtract-light.svg new file mode 100644 index 0000000..08e7850 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/subtract-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/subtract-square-light.svg b/phosphor_orig/SVGs Flat/light/subtract-square-light.svg new file mode 100644 index 0000000..55c0d27 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/subtract-square-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/subway-light.svg b/phosphor_orig/SVGs Flat/light/subway-light.svg new file mode 100644 index 0000000..3912d0b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/subway-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/suitcase-light.svg b/phosphor_orig/SVGs Flat/light/suitcase-light.svg new file mode 100644 index 0000000..28b26b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/suitcase-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/suitcase-rolling-light.svg b/phosphor_orig/SVGs Flat/light/suitcase-rolling-light.svg new file mode 100644 index 0000000..1ecfc68 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/suitcase-rolling-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/suitcase-simple-light.svg b/phosphor_orig/SVGs Flat/light/suitcase-simple-light.svg new file mode 100644 index 0000000..6027ab5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/suitcase-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sun-dim-light.svg b/phosphor_orig/SVGs Flat/light/sun-dim-light.svg new file mode 100644 index 0000000..4cdd0d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sun-dim-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sun-horizon-light.svg b/phosphor_orig/SVGs Flat/light/sun-horizon-light.svg new file mode 100644 index 0000000..7dbc6b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sun-horizon-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sun-light.svg b/phosphor_orig/SVGs Flat/light/sun-light.svg new file mode 100644 index 0000000..ad3db95 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sun-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sunglasses-light.svg b/phosphor_orig/SVGs Flat/light/sunglasses-light.svg new file mode 100644 index 0000000..8299e88 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sunglasses-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/superset-of-light.svg b/phosphor_orig/SVGs Flat/light/superset-of-light.svg new file mode 100644 index 0000000..be2ca61 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/superset-of-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/superset-proper-of-light.svg b/phosphor_orig/SVGs Flat/light/superset-proper-of-light.svg new file mode 100644 index 0000000..b0844d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/superset-proper-of-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/swap-light.svg b/phosphor_orig/SVGs Flat/light/swap-light.svg new file mode 100644 index 0000000..0de6274 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/swap-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/swatches-light.svg b/phosphor_orig/SVGs Flat/light/swatches-light.svg new file mode 100644 index 0000000..64a1644 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/swatches-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/swimming-pool-light.svg b/phosphor_orig/SVGs Flat/light/swimming-pool-light.svg new file mode 100644 index 0000000..0b480ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/swimming-pool-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/sword-light.svg b/phosphor_orig/SVGs Flat/light/sword-light.svg new file mode 100644 index 0000000..afa2c1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/sword-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/synagogue-light.svg b/phosphor_orig/SVGs Flat/light/synagogue-light.svg new file mode 100644 index 0000000..0ff3e2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/synagogue-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/syringe-light.svg b/phosphor_orig/SVGs Flat/light/syringe-light.svg new file mode 100644 index 0000000..2d2e0a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/syringe-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/t-shirt-light.svg b/phosphor_orig/SVGs Flat/light/t-shirt-light.svg new file mode 100644 index 0000000..c9b6257 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/t-shirt-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/table-light.svg b/phosphor_orig/SVGs Flat/light/table-light.svg new file mode 100644 index 0000000..4b9bd76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/table-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tabs-light.svg b/phosphor_orig/SVGs Flat/light/tabs-light.svg new file mode 100644 index 0000000..8e49596 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tabs-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tag-chevron-light.svg b/phosphor_orig/SVGs Flat/light/tag-chevron-light.svg new file mode 100644 index 0000000..03a98e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tag-chevron-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tag-light.svg b/phosphor_orig/SVGs Flat/light/tag-light.svg new file mode 100644 index 0000000..fbd372d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tag-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tag-simple-light.svg b/phosphor_orig/SVGs Flat/light/tag-simple-light.svg new file mode 100644 index 0000000..526ae83 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tag-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/target-light.svg b/phosphor_orig/SVGs Flat/light/target-light.svg new file mode 100644 index 0000000..1da4ec0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/target-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/taxi-light.svg b/phosphor_orig/SVGs Flat/light/taxi-light.svg new file mode 100644 index 0000000..f241038 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/taxi-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tea-bag-light.svg b/phosphor_orig/SVGs Flat/light/tea-bag-light.svg new file mode 100644 index 0000000..e37d0d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tea-bag-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/telegram-logo-light.svg b/phosphor_orig/SVGs Flat/light/telegram-logo-light.svg new file mode 100644 index 0000000..7d13944 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/telegram-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/television-light.svg b/phosphor_orig/SVGs Flat/light/television-light.svg new file mode 100644 index 0000000..caa6e74 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/television-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/television-simple-light.svg b/phosphor_orig/SVGs Flat/light/television-simple-light.svg new file mode 100644 index 0000000..3d8ded8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/television-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tennis-ball-light.svg b/phosphor_orig/SVGs Flat/light/tennis-ball-light.svg new file mode 100644 index 0000000..0b2fee7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tennis-ball-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tent-light.svg b/phosphor_orig/SVGs Flat/light/tent-light.svg new file mode 100644 index 0000000..7d92cb9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tent-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/terminal-light.svg b/phosphor_orig/SVGs Flat/light/terminal-light.svg new file mode 100644 index 0000000..96ac595 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/terminal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/terminal-window-light.svg b/phosphor_orig/SVGs Flat/light/terminal-window-light.svg new file mode 100644 index 0000000..b0b9c36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/terminal-window-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/test-tube-light.svg b/phosphor_orig/SVGs Flat/light/test-tube-light.svg new file mode 100644 index 0000000..14f8c4b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/test-tube-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-a-underline-light.svg b/phosphor_orig/SVGs Flat/light/text-a-underline-light.svg new file mode 100644 index 0000000..cadf5ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-a-underline-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-aa-light.svg b/phosphor_orig/SVGs Flat/light/text-aa-light.svg new file mode 100644 index 0000000..e06339a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-aa-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-align-center-light.svg b/phosphor_orig/SVGs Flat/light/text-align-center-light.svg new file mode 100644 index 0000000..6c40b48 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-align-center-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-align-justify-light.svg b/phosphor_orig/SVGs Flat/light/text-align-justify-light.svg new file mode 100644 index 0000000..a97aecf --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-align-justify-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-align-left-light.svg b/phosphor_orig/SVGs Flat/light/text-align-left-light.svg new file mode 100644 index 0000000..77e0dd4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-align-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-align-right-light.svg b/phosphor_orig/SVGs Flat/light/text-align-right-light.svg new file mode 100644 index 0000000..b0ef9b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-align-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-b-light.svg b/phosphor_orig/SVGs Flat/light/text-b-light.svg new file mode 100644 index 0000000..aada39f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-b-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-columns-light.svg b/phosphor_orig/SVGs Flat/light/text-columns-light.svg new file mode 100644 index 0000000..4975259 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-columns-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-h-five-light.svg b/phosphor_orig/SVGs Flat/light/text-h-five-light.svg new file mode 100644 index 0000000..5287c83 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-h-five-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-h-four-light.svg b/phosphor_orig/SVGs Flat/light/text-h-four-light.svg new file mode 100644 index 0000000..9811af9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-h-four-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-h-light.svg b/phosphor_orig/SVGs Flat/light/text-h-light.svg new file mode 100644 index 0000000..926d6ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-h-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-h-one-light.svg b/phosphor_orig/SVGs Flat/light/text-h-one-light.svg new file mode 100644 index 0000000..a70a765 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-h-one-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-h-six-light.svg b/phosphor_orig/SVGs Flat/light/text-h-six-light.svg new file mode 100644 index 0000000..a5eef78 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-h-six-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-h-three-light.svg b/phosphor_orig/SVGs Flat/light/text-h-three-light.svg new file mode 100644 index 0000000..f8aaa9b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-h-three-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-h-two-light.svg b/phosphor_orig/SVGs Flat/light/text-h-two-light.svg new file mode 100644 index 0000000..d417d55 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-h-two-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-indent-light.svg b/phosphor_orig/SVGs Flat/light/text-indent-light.svg new file mode 100644 index 0000000..b642cb2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-indent-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-italic-light.svg b/phosphor_orig/SVGs Flat/light/text-italic-light.svg new file mode 100644 index 0000000..1ebaa75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-italic-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-outdent-light.svg b/phosphor_orig/SVGs Flat/light/text-outdent-light.svg new file mode 100644 index 0000000..02def09 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-outdent-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-strikethrough-light.svg b/phosphor_orig/SVGs Flat/light/text-strikethrough-light.svg new file mode 100644 index 0000000..4e974a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-strikethrough-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-subscript-light.svg b/phosphor_orig/SVGs Flat/light/text-subscript-light.svg new file mode 100644 index 0000000..e5e3bae --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-subscript-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-superscript-light.svg b/phosphor_orig/SVGs Flat/light/text-superscript-light.svg new file mode 100644 index 0000000..4b60c53 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-superscript-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-t-light.svg b/phosphor_orig/SVGs Flat/light/text-t-light.svg new file mode 100644 index 0000000..9916a5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-t-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-t-slash-light.svg b/phosphor_orig/SVGs Flat/light/text-t-slash-light.svg new file mode 100644 index 0000000..70dfcd0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-t-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/text-underline-light.svg b/phosphor_orig/SVGs Flat/light/text-underline-light.svg new file mode 100644 index 0000000..bedfa33 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/text-underline-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/textbox-light.svg b/phosphor_orig/SVGs Flat/light/textbox-light.svg new file mode 100644 index 0000000..c11dea5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/textbox-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/thermometer-cold-light.svg b/phosphor_orig/SVGs Flat/light/thermometer-cold-light.svg new file mode 100644 index 0000000..8e8c2bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/thermometer-cold-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/thermometer-hot-light.svg b/phosphor_orig/SVGs Flat/light/thermometer-hot-light.svg new file mode 100644 index 0000000..398a7f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/thermometer-hot-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/thermometer-light.svg b/phosphor_orig/SVGs Flat/light/thermometer-light.svg new file mode 100644 index 0000000..db79a8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/thermometer-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/thermometer-simple-light.svg b/phosphor_orig/SVGs Flat/light/thermometer-simple-light.svg new file mode 100644 index 0000000..7603db5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/thermometer-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/threads-logo-light.svg b/phosphor_orig/SVGs Flat/light/threads-logo-light.svg new file mode 100644 index 0000000..5c96fca --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/threads-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/three-d-light.svg b/phosphor_orig/SVGs Flat/light/three-d-light.svg new file mode 100644 index 0000000..bda76cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/three-d-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/thumbs-down-light.svg b/phosphor_orig/SVGs Flat/light/thumbs-down-light.svg new file mode 100644 index 0000000..bb17260 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/thumbs-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/thumbs-up-light.svg b/phosphor_orig/SVGs Flat/light/thumbs-up-light.svg new file mode 100644 index 0000000..04dbac4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/thumbs-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/ticket-light.svg b/phosphor_orig/SVGs Flat/light/ticket-light.svg new file mode 100644 index 0000000..7942508 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/ticket-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tidal-logo-light.svg b/phosphor_orig/SVGs Flat/light/tidal-logo-light.svg new file mode 100644 index 0000000..c3783c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tidal-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tiktok-logo-light.svg b/phosphor_orig/SVGs Flat/light/tiktok-logo-light.svg new file mode 100644 index 0000000..02273fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tiktok-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tilde-light.svg b/phosphor_orig/SVGs Flat/light/tilde-light.svg new file mode 100644 index 0000000..cf407cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tilde-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/timer-light.svg b/phosphor_orig/SVGs Flat/light/timer-light.svg new file mode 100644 index 0000000..b3d2901 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/timer-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tip-jar-light.svg b/phosphor_orig/SVGs Flat/light/tip-jar-light.svg new file mode 100644 index 0000000..b1d4a4c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tip-jar-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tipi-light.svg b/phosphor_orig/SVGs Flat/light/tipi-light.svg new file mode 100644 index 0000000..db8b374 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tipi-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tire-light.svg b/phosphor_orig/SVGs Flat/light/tire-light.svg new file mode 100644 index 0000000..8195a5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tire-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/toggle-left-light.svg b/phosphor_orig/SVGs Flat/light/toggle-left-light.svg new file mode 100644 index 0000000..71a1d7a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/toggle-left-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/toggle-right-light.svg b/phosphor_orig/SVGs Flat/light/toggle-right-light.svg new file mode 100644 index 0000000..2feef2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/toggle-right-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/toilet-light.svg b/phosphor_orig/SVGs Flat/light/toilet-light.svg new file mode 100644 index 0000000..e5b038a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/toilet-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/toilet-paper-light.svg b/phosphor_orig/SVGs Flat/light/toilet-paper-light.svg new file mode 100644 index 0000000..367263c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/toilet-paper-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/toolbox-light.svg b/phosphor_orig/SVGs Flat/light/toolbox-light.svg new file mode 100644 index 0000000..f75b1e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/toolbox-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tooth-light.svg b/phosphor_orig/SVGs Flat/light/tooth-light.svg new file mode 100644 index 0000000..2986e1b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tooth-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tornado-light.svg b/phosphor_orig/SVGs Flat/light/tornado-light.svg new file mode 100644 index 0000000..1ba6525 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tornado-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tote-light.svg b/phosphor_orig/SVGs Flat/light/tote-light.svg new file mode 100644 index 0000000..8f1a13d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tote-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tote-simple-light.svg b/phosphor_orig/SVGs Flat/light/tote-simple-light.svg new file mode 100644 index 0000000..8822f3c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tote-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/towel-light.svg b/phosphor_orig/SVGs Flat/light/towel-light.svg new file mode 100644 index 0000000..7b4ca1b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/towel-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tractor-light.svg b/phosphor_orig/SVGs Flat/light/tractor-light.svg new file mode 100644 index 0000000..f0be7d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tractor-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/trademark-light.svg b/phosphor_orig/SVGs Flat/light/trademark-light.svg new file mode 100644 index 0000000..1f2f0ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/trademark-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/trademark-registered-light.svg b/phosphor_orig/SVGs Flat/light/trademark-registered-light.svg new file mode 100644 index 0000000..e2dac43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/trademark-registered-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/traffic-cone-light.svg b/phosphor_orig/SVGs Flat/light/traffic-cone-light.svg new file mode 100644 index 0000000..985540b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/traffic-cone-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/traffic-sign-light.svg b/phosphor_orig/SVGs Flat/light/traffic-sign-light.svg new file mode 100644 index 0000000..c848d51 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/traffic-sign-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/traffic-signal-light.svg b/phosphor_orig/SVGs Flat/light/traffic-signal-light.svg new file mode 100644 index 0000000..f716edd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/traffic-signal-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/train-light.svg b/phosphor_orig/SVGs Flat/light/train-light.svg new file mode 100644 index 0000000..d482eac --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/train-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/train-regional-light.svg b/phosphor_orig/SVGs Flat/light/train-regional-light.svg new file mode 100644 index 0000000..a2d4f0e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/train-regional-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/train-simple-light.svg b/phosphor_orig/SVGs Flat/light/train-simple-light.svg new file mode 100644 index 0000000..1c1e6b0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/train-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tram-light.svg b/phosphor_orig/SVGs Flat/light/tram-light.svg new file mode 100644 index 0000000..e88efbc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tram-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/translate-light.svg b/phosphor_orig/SVGs Flat/light/translate-light.svg new file mode 100644 index 0000000..9cad590 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/translate-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/trash-light.svg b/phosphor_orig/SVGs Flat/light/trash-light.svg new file mode 100644 index 0000000..36f405f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/trash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/trash-simple-light.svg b/phosphor_orig/SVGs Flat/light/trash-simple-light.svg new file mode 100644 index 0000000..e253699 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/trash-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tray-arrow-down-light.svg b/phosphor_orig/SVGs Flat/light/tray-arrow-down-light.svg new file mode 100644 index 0000000..4b68d81 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tray-arrow-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tray-arrow-up-light.svg b/phosphor_orig/SVGs Flat/light/tray-arrow-up-light.svg new file mode 100644 index 0000000..fd235bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tray-arrow-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tray-light.svg b/phosphor_orig/SVGs Flat/light/tray-light.svg new file mode 100644 index 0000000..87937bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tray-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/treasure-chest-light.svg b/phosphor_orig/SVGs Flat/light/treasure-chest-light.svg new file mode 100644 index 0000000..87b291e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/treasure-chest-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tree-evergreen-light.svg b/phosphor_orig/SVGs Flat/light/tree-evergreen-light.svg new file mode 100644 index 0000000..9c9693d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tree-evergreen-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tree-light.svg b/phosphor_orig/SVGs Flat/light/tree-light.svg new file mode 100644 index 0000000..5fd54fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tree-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tree-palm-light.svg b/phosphor_orig/SVGs Flat/light/tree-palm-light.svg new file mode 100644 index 0000000..41ab7bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tree-palm-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tree-structure-light.svg b/phosphor_orig/SVGs Flat/light/tree-structure-light.svg new file mode 100644 index 0000000..5f30f9d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tree-structure-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tree-view-light.svg b/phosphor_orig/SVGs Flat/light/tree-view-light.svg new file mode 100644 index 0000000..96f2b3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tree-view-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/trend-down-light.svg b/phosphor_orig/SVGs Flat/light/trend-down-light.svg new file mode 100644 index 0000000..a202a7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/trend-down-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/trend-up-light.svg b/phosphor_orig/SVGs Flat/light/trend-up-light.svg new file mode 100644 index 0000000..e2f97ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/trend-up-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/triangle-dashed-light.svg b/phosphor_orig/SVGs Flat/light/triangle-dashed-light.svg new file mode 100644 index 0000000..0ece79a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/triangle-dashed-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/triangle-light.svg b/phosphor_orig/SVGs Flat/light/triangle-light.svg new file mode 100644 index 0000000..c2945f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/triangle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/trolley-light.svg b/phosphor_orig/SVGs Flat/light/trolley-light.svg new file mode 100644 index 0000000..681a7fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/trolley-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/trolley-suitcase-light.svg b/phosphor_orig/SVGs Flat/light/trolley-suitcase-light.svg new file mode 100644 index 0000000..a257fca --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/trolley-suitcase-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/trophy-light.svg b/phosphor_orig/SVGs Flat/light/trophy-light.svg new file mode 100644 index 0000000..e688f7b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/trophy-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/truck-light.svg b/phosphor_orig/SVGs Flat/light/truck-light.svg new file mode 100644 index 0000000..523e30f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/truck-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/truck-trailer-light.svg b/phosphor_orig/SVGs Flat/light/truck-trailer-light.svg new file mode 100644 index 0000000..1619af8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/truck-trailer-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/tumblr-logo-light.svg b/phosphor_orig/SVGs Flat/light/tumblr-logo-light.svg new file mode 100644 index 0000000..9ba4380 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/tumblr-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/twitch-logo-light.svg b/phosphor_orig/SVGs Flat/light/twitch-logo-light.svg new file mode 100644 index 0000000..a7c294a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/twitch-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/twitter-logo-light.svg b/phosphor_orig/SVGs Flat/light/twitter-logo-light.svg new file mode 100644 index 0000000..cba7e6a --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/twitter-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/umbrella-light.svg b/phosphor_orig/SVGs Flat/light/umbrella-light.svg new file mode 100644 index 0000000..b253894 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/umbrella-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/umbrella-simple-light.svg b/phosphor_orig/SVGs Flat/light/umbrella-simple-light.svg new file mode 100644 index 0000000..c06e32c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/umbrella-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/union-light.svg b/phosphor_orig/SVGs Flat/light/union-light.svg new file mode 100644 index 0000000..d1ba03e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/union-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/unite-light.svg b/phosphor_orig/SVGs Flat/light/unite-light.svg new file mode 100644 index 0000000..203dda3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/unite-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/unite-square-light.svg b/phosphor_orig/SVGs Flat/light/unite-square-light.svg new file mode 100644 index 0000000..b15bee4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/unite-square-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/upload-light.svg b/phosphor_orig/SVGs Flat/light/upload-light.svg new file mode 100644 index 0000000..df79771 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/upload-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/upload-simple-light.svg b/phosphor_orig/SVGs Flat/light/upload-simple-light.svg new file mode 100644 index 0000000..2d6db2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/upload-simple-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/usb-light.svg b/phosphor_orig/SVGs Flat/light/usb-light.svg new file mode 100644 index 0000000..7f0e7b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/usb-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-check-light.svg b/phosphor_orig/SVGs Flat/light/user-check-light.svg new file mode 100644 index 0000000..0fb3343 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-check-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-circle-check-light.svg b/phosphor_orig/SVGs Flat/light/user-circle-check-light.svg new file mode 100644 index 0000000..73279e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-circle-check-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-circle-dashed-light.svg b/phosphor_orig/SVGs Flat/light/user-circle-dashed-light.svg new file mode 100644 index 0000000..564f0a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-circle-dashed-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-circle-gear-light.svg b/phosphor_orig/SVGs Flat/light/user-circle-gear-light.svg new file mode 100644 index 0000000..3ea04bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-circle-gear-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-circle-light.svg b/phosphor_orig/SVGs Flat/light/user-circle-light.svg new file mode 100644 index 0000000..847719c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-circle-minus-light.svg b/phosphor_orig/SVGs Flat/light/user-circle-minus-light.svg new file mode 100644 index 0000000..e4deb17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-circle-minus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-circle-plus-light.svg b/phosphor_orig/SVGs Flat/light/user-circle-plus-light.svg new file mode 100644 index 0000000..59c12e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-circle-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-focus-light.svg b/phosphor_orig/SVGs Flat/light/user-focus-light.svg new file mode 100644 index 0000000..6634fe8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-focus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-gear-light.svg b/phosphor_orig/SVGs Flat/light/user-gear-light.svg new file mode 100644 index 0000000..511660e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-gear-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-light.svg b/phosphor_orig/SVGs Flat/light/user-light.svg new file mode 100644 index 0000000..3fd28b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-list-light.svg b/phosphor_orig/SVGs Flat/light/user-list-light.svg new file mode 100644 index 0000000..3888c82 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-list-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-minus-light.svg b/phosphor_orig/SVGs Flat/light/user-minus-light.svg new file mode 100644 index 0000000..4e365a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-minus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-plus-light.svg b/phosphor_orig/SVGs Flat/light/user-plus-light.svg new file mode 100644 index 0000000..b4631da --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-plus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-rectangle-light.svg b/phosphor_orig/SVGs Flat/light/user-rectangle-light.svg new file mode 100644 index 0000000..81a93c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-rectangle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-sound-light.svg b/phosphor_orig/SVGs Flat/light/user-sound-light.svg new file mode 100644 index 0000000..324379f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-sound-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-square-light.svg b/phosphor_orig/SVGs Flat/light/user-square-light.svg new file mode 100644 index 0000000..fe65014 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-square-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/user-switch-light.svg b/phosphor_orig/SVGs Flat/light/user-switch-light.svg new file mode 100644 index 0000000..dbb2db0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/user-switch-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/users-four-light.svg b/phosphor_orig/SVGs Flat/light/users-four-light.svg new file mode 100644 index 0000000..3cbb706 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/users-four-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/users-light.svg b/phosphor_orig/SVGs Flat/light/users-light.svg new file mode 100644 index 0000000..936c3c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/users-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/users-three-light.svg b/phosphor_orig/SVGs Flat/light/users-three-light.svg new file mode 100644 index 0000000..3fb24b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/users-three-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/van-light.svg b/phosphor_orig/SVGs Flat/light/van-light.svg new file mode 100644 index 0000000..2c9f9e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/van-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/vault-light.svg b/phosphor_orig/SVGs Flat/light/vault-light.svg new file mode 100644 index 0000000..aa0fb32 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/vault-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/vector-three-light.svg b/phosphor_orig/SVGs Flat/light/vector-three-light.svg new file mode 100644 index 0000000..c24bb7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/vector-three-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/vector-two-light.svg b/phosphor_orig/SVGs Flat/light/vector-two-light.svg new file mode 100644 index 0000000..190e2b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/vector-two-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/vibrate-light.svg b/phosphor_orig/SVGs Flat/light/vibrate-light.svg new file mode 100644 index 0000000..e706b8e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/vibrate-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/video-camera-light.svg b/phosphor_orig/SVGs Flat/light/video-camera-light.svg new file mode 100644 index 0000000..83ee1e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/video-camera-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/video-camera-slash-light.svg b/phosphor_orig/SVGs Flat/light/video-camera-slash-light.svg new file mode 100644 index 0000000..00bea14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/video-camera-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/video-conference-light.svg b/phosphor_orig/SVGs Flat/light/video-conference-light.svg new file mode 100644 index 0000000..db66a82 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/video-conference-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/video-light.svg b/phosphor_orig/SVGs Flat/light/video-light.svg new file mode 100644 index 0000000..8976b22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/video-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/vignette-light.svg b/phosphor_orig/SVGs Flat/light/vignette-light.svg new file mode 100644 index 0000000..6b19871 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/vignette-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/vinyl-record-light.svg b/phosphor_orig/SVGs Flat/light/vinyl-record-light.svg new file mode 100644 index 0000000..e161970 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/vinyl-record-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/virtual-reality-light.svg b/phosphor_orig/SVGs Flat/light/virtual-reality-light.svg new file mode 100644 index 0000000..c1b3d9f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/virtual-reality-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/virus-light.svg b/phosphor_orig/SVGs Flat/light/virus-light.svg new file mode 100644 index 0000000..0e2a95b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/virus-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/visor-light.svg b/phosphor_orig/SVGs Flat/light/visor-light.svg new file mode 100644 index 0000000..f2d269d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/visor-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/voicemail-light.svg b/phosphor_orig/SVGs Flat/light/voicemail-light.svg new file mode 100644 index 0000000..13e36c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/voicemail-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/volleyball-light.svg b/phosphor_orig/SVGs Flat/light/volleyball-light.svg new file mode 100644 index 0000000..1899f76 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/volleyball-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wall-light.svg b/phosphor_orig/SVGs Flat/light/wall-light.svg new file mode 100644 index 0000000..2e9c184 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wall-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wallet-light.svg b/phosphor_orig/SVGs Flat/light/wallet-light.svg new file mode 100644 index 0000000..2c90899 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wallet-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/warehouse-light.svg b/phosphor_orig/SVGs Flat/light/warehouse-light.svg new file mode 100644 index 0000000..f9ca832 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/warehouse-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/warning-circle-light.svg b/phosphor_orig/SVGs Flat/light/warning-circle-light.svg new file mode 100644 index 0000000..7a9cae0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/warning-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/warning-diamond-light.svg b/phosphor_orig/SVGs Flat/light/warning-diamond-light.svg new file mode 100644 index 0000000..253204b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/warning-diamond-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/warning-light.svg b/phosphor_orig/SVGs Flat/light/warning-light.svg new file mode 100644 index 0000000..460b4dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/warning-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/warning-octagon-light.svg b/phosphor_orig/SVGs Flat/light/warning-octagon-light.svg new file mode 100644 index 0000000..e928512 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/warning-octagon-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/washing-machine-light.svg b/phosphor_orig/SVGs Flat/light/washing-machine-light.svg new file mode 100644 index 0000000..db0f783 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/washing-machine-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/watch-light.svg b/phosphor_orig/SVGs Flat/light/watch-light.svg new file mode 100644 index 0000000..2b06d3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/watch-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wave-sawtooth-light.svg b/phosphor_orig/SVGs Flat/light/wave-sawtooth-light.svg new file mode 100644 index 0000000..f19818c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wave-sawtooth-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wave-sine-light.svg b/phosphor_orig/SVGs Flat/light/wave-sine-light.svg new file mode 100644 index 0000000..27e6e09 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wave-sine-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wave-square-light.svg b/phosphor_orig/SVGs Flat/light/wave-square-light.svg new file mode 100644 index 0000000..035ed4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wave-square-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wave-triangle-light.svg b/phosphor_orig/SVGs Flat/light/wave-triangle-light.svg new file mode 100644 index 0000000..fa9c62b --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wave-triangle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/waveform-light.svg b/phosphor_orig/SVGs Flat/light/waveform-light.svg new file mode 100644 index 0000000..0cc6592 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/waveform-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/waveform-slash-light.svg b/phosphor_orig/SVGs Flat/light/waveform-slash-light.svg new file mode 100644 index 0000000..09248fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/waveform-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/waves-light.svg b/phosphor_orig/SVGs Flat/light/waves-light.svg new file mode 100644 index 0000000..8404db1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/waves-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/webcam-light.svg b/phosphor_orig/SVGs Flat/light/webcam-light.svg new file mode 100644 index 0000000..871a593 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/webcam-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/webcam-slash-light.svg b/phosphor_orig/SVGs Flat/light/webcam-slash-light.svg new file mode 100644 index 0000000..70c9be2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/webcam-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/webhooks-logo-light.svg b/phosphor_orig/SVGs Flat/light/webhooks-logo-light.svg new file mode 100644 index 0000000..59ec899 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/webhooks-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wechat-logo-light.svg b/phosphor_orig/SVGs Flat/light/wechat-logo-light.svg new file mode 100644 index 0000000..021b02d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wechat-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/whatsapp-logo-light.svg b/phosphor_orig/SVGs Flat/light/whatsapp-logo-light.svg new file mode 100644 index 0000000..d3e8928 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/whatsapp-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wheelchair-light.svg b/phosphor_orig/SVGs Flat/light/wheelchair-light.svg new file mode 100644 index 0000000..7d7fcbd --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wheelchair-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wheelchair-motion-light.svg b/phosphor_orig/SVGs Flat/light/wheelchair-motion-light.svg new file mode 100644 index 0000000..54c1c48 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wheelchair-motion-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wifi-high-light.svg b/phosphor_orig/SVGs Flat/light/wifi-high-light.svg new file mode 100644 index 0000000..654faf7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wifi-high-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wifi-low-light.svg b/phosphor_orig/SVGs Flat/light/wifi-low-light.svg new file mode 100644 index 0000000..23996b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wifi-low-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wifi-medium-light.svg b/phosphor_orig/SVGs Flat/light/wifi-medium-light.svg new file mode 100644 index 0000000..3676f29 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wifi-medium-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wifi-none-light.svg b/phosphor_orig/SVGs Flat/light/wifi-none-light.svg new file mode 100644 index 0000000..a364b16 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wifi-none-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wifi-slash-light.svg b/phosphor_orig/SVGs Flat/light/wifi-slash-light.svg new file mode 100644 index 0000000..94e5bf3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wifi-slash-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wifi-x-light.svg b/phosphor_orig/SVGs Flat/light/wifi-x-light.svg new file mode 100644 index 0000000..4be7b0d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wifi-x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wind-light.svg b/phosphor_orig/SVGs Flat/light/wind-light.svg new file mode 100644 index 0000000..ead0b80 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wind-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/windmill-light.svg b/phosphor_orig/SVGs Flat/light/windmill-light.svg new file mode 100644 index 0000000..2caf656 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/windmill-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/windows-logo-light.svg b/phosphor_orig/SVGs Flat/light/windows-logo-light.svg new file mode 100644 index 0000000..4343bda --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/windows-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wine-light.svg b/phosphor_orig/SVGs Flat/light/wine-light.svg new file mode 100644 index 0000000..c0bde3c --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wine-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/wrench-light.svg b/phosphor_orig/SVGs Flat/light/wrench-light.svg new file mode 100644 index 0000000..332b714 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/wrench-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/x-circle-light.svg b/phosphor_orig/SVGs Flat/light/x-circle-light.svg new file mode 100644 index 0000000..baf964f --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/x-circle-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/x-light.svg b/phosphor_orig/SVGs Flat/light/x-light.svg new file mode 100644 index 0000000..459f13d --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/x-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/x-logo-light.svg b/phosphor_orig/SVGs Flat/light/x-logo-light.svg new file mode 100644 index 0000000..5e6e664 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/x-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/x-square-light.svg b/phosphor_orig/SVGs Flat/light/x-square-light.svg new file mode 100644 index 0000000..42a5743 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/x-square-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/yarn-light.svg b/phosphor_orig/SVGs Flat/light/yarn-light.svg new file mode 100644 index 0000000..04c69aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/yarn-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/yin-yang-light.svg b/phosphor_orig/SVGs Flat/light/yin-yang-light.svg new file mode 100644 index 0000000..98da8dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/yin-yang-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/light/youtube-logo-light.svg b/phosphor_orig/SVGs Flat/light/youtube-logo-light.svg new file mode 100644 index 0000000..79d93a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/light/youtube-logo-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/acorn.svg b/phosphor_orig/SVGs Flat/regular/acorn.svg new file mode 100644 index 0000000..1bb2659 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/acorn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/address-book-tabs.svg b/phosphor_orig/SVGs Flat/regular/address-book-tabs.svg new file mode 100644 index 0000000..d5ff861 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/address-book-tabs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/address-book.svg b/phosphor_orig/SVGs Flat/regular/address-book.svg new file mode 100644 index 0000000..574bbac --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/address-book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/air-traffic-control.svg b/phosphor_orig/SVGs Flat/regular/air-traffic-control.svg new file mode 100644 index 0000000..b27fc60 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/air-traffic-control.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/airplane-in-flight.svg b/phosphor_orig/SVGs Flat/regular/airplane-in-flight.svg new file mode 100644 index 0000000..e10716c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/airplane-in-flight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/airplane-landing.svg b/phosphor_orig/SVGs Flat/regular/airplane-landing.svg new file mode 100644 index 0000000..4fb814d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/airplane-landing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/airplane-takeoff.svg b/phosphor_orig/SVGs Flat/regular/airplane-takeoff.svg new file mode 100644 index 0000000..3752afe --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/airplane-takeoff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/airplane-taxiing.svg b/phosphor_orig/SVGs Flat/regular/airplane-taxiing.svg new file mode 100644 index 0000000..21458e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/airplane-taxiing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/airplane-tilt.svg b/phosphor_orig/SVGs Flat/regular/airplane-tilt.svg new file mode 100644 index 0000000..9fa1c08 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/airplane-tilt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/airplane.svg b/phosphor_orig/SVGs Flat/regular/airplane.svg new file mode 100644 index 0000000..5a30bd1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/airplane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/airplay.svg b/phosphor_orig/SVGs Flat/regular/airplay.svg new file mode 100644 index 0000000..a47d379 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/airplay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/alarm.svg b/phosphor_orig/SVGs Flat/regular/alarm.svg new file mode 100644 index 0000000..338a01a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/alarm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/alien.svg b/phosphor_orig/SVGs Flat/regular/alien.svg new file mode 100644 index 0000000..486083d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/alien.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/align-bottom-simple.svg b/phosphor_orig/SVGs Flat/regular/align-bottom-simple.svg new file mode 100644 index 0000000..0f86b8b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/align-bottom-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/align-bottom.svg b/phosphor_orig/SVGs Flat/regular/align-bottom.svg new file mode 100644 index 0000000..35b3164 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/align-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/align-center-horizontal-simple.svg b/phosphor_orig/SVGs Flat/regular/align-center-horizontal-simple.svg new file mode 100644 index 0000000..e651e83 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/align-center-horizontal-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/align-center-horizontal.svg b/phosphor_orig/SVGs Flat/regular/align-center-horizontal.svg new file mode 100644 index 0000000..3f7e77f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/align-center-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/align-center-vertical-simple.svg b/phosphor_orig/SVGs Flat/regular/align-center-vertical-simple.svg new file mode 100644 index 0000000..c06da1f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/align-center-vertical-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/align-center-vertical.svg b/phosphor_orig/SVGs Flat/regular/align-center-vertical.svg new file mode 100644 index 0000000..a52acfa --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/align-center-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/align-left-simple.svg b/phosphor_orig/SVGs Flat/regular/align-left-simple.svg new file mode 100644 index 0000000..b7f415e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/align-left-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/align-left.svg b/phosphor_orig/SVGs Flat/regular/align-left.svg new file mode 100644 index 0000000..ed23187 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/align-right-simple.svg b/phosphor_orig/SVGs Flat/regular/align-right-simple.svg new file mode 100644 index 0000000..87c3b9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/align-right-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/align-right.svg b/phosphor_orig/SVGs Flat/regular/align-right.svg new file mode 100644 index 0000000..dd9edbc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/align-top-simple.svg b/phosphor_orig/SVGs Flat/regular/align-top-simple.svg new file mode 100644 index 0000000..1d0d649 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/align-top-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/align-top.svg b/phosphor_orig/SVGs Flat/regular/align-top.svg new file mode 100644 index 0000000..8c85fdc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/align-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/amazon-logo.svg b/phosphor_orig/SVGs Flat/regular/amazon-logo.svg new file mode 100644 index 0000000..1145a82 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/amazon-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/ambulance.svg b/phosphor_orig/SVGs Flat/regular/ambulance.svg new file mode 100644 index 0000000..3e136ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/ambulance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/anchor-simple.svg b/phosphor_orig/SVGs Flat/regular/anchor-simple.svg new file mode 100644 index 0000000..f60a9da --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/anchor-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/anchor.svg b/phosphor_orig/SVGs Flat/regular/anchor.svg new file mode 100644 index 0000000..8033d6e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/anchor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/android-logo.svg b/phosphor_orig/SVGs Flat/regular/android-logo.svg new file mode 100644 index 0000000..d5272c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/android-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/angle.svg b/phosphor_orig/SVGs Flat/regular/angle.svg new file mode 100644 index 0000000..3914e43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/angle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/angular-logo.svg b/phosphor_orig/SVGs Flat/regular/angular-logo.svg new file mode 100644 index 0000000..7d8e478 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/angular-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/aperture.svg b/phosphor_orig/SVGs Flat/regular/aperture.svg new file mode 100644 index 0000000..f1b4eb5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/aperture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/app-store-logo.svg b/phosphor_orig/SVGs Flat/regular/app-store-logo.svg new file mode 100644 index 0000000..252346a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/app-store-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/app-window.svg b/phosphor_orig/SVGs Flat/regular/app-window.svg new file mode 100644 index 0000000..e2ac7d6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/app-window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/apple-logo.svg b/phosphor_orig/SVGs Flat/regular/apple-logo.svg new file mode 100644 index 0000000..521bf8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/apple-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/apple-podcasts-logo.svg b/phosphor_orig/SVGs Flat/regular/apple-podcasts-logo.svg new file mode 100644 index 0000000..3462c52 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/apple-podcasts-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/approximate-equals.svg b/phosphor_orig/SVGs Flat/regular/approximate-equals.svg new file mode 100644 index 0000000..5bd66cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/approximate-equals.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/archive.svg b/phosphor_orig/SVGs Flat/regular/archive.svg new file mode 100644 index 0000000..bb40179 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/armchair.svg b/phosphor_orig/SVGs Flat/regular/armchair.svg new file mode 100644 index 0000000..28f0039 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/armchair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-arc-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-arc-left.svg new file mode 100644 index 0000000..ac732a8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-arc-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-arc-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-arc-right.svg new file mode 100644 index 0000000..347f563 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-arc-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-bend-double-up-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-bend-double-up-left.svg new file mode 100644 index 0000000..e5fd915 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-bend-double-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-bend-double-up-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-bend-double-up-right.svg new file mode 100644 index 0000000..fe3b67c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-bend-double-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-bend-down-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-bend-down-left.svg new file mode 100644 index 0000000..aa34787 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-bend-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-bend-down-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-bend-down-right.svg new file mode 100644 index 0000000..66226a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-bend-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-bend-left-down.svg b/phosphor_orig/SVGs Flat/regular/arrow-bend-left-down.svg new file mode 100644 index 0000000..6feab50 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-bend-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-bend-left-up.svg b/phosphor_orig/SVGs Flat/regular/arrow-bend-left-up.svg new file mode 100644 index 0000000..2db2091 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-bend-left-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-bend-right-down.svg b/phosphor_orig/SVGs Flat/regular/arrow-bend-right-down.svg new file mode 100644 index 0000000..7499eac --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-bend-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-bend-right-up.svg b/phosphor_orig/SVGs Flat/regular/arrow-bend-right-up.svg new file mode 100644 index 0000000..fb7cc66 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-bend-right-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-bend-up-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-bend-up-left.svg new file mode 100644 index 0000000..c6ce0a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-bend-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-bend-up-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-bend-up-right.svg new file mode 100644 index 0000000..defa5cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-bend-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-circle-down-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-circle-down-left.svg new file mode 100644 index 0000000..56ad47e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-circle-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-circle-down-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-circle-down-right.svg new file mode 100644 index 0000000..a497b3d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-circle-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-circle-down.svg b/phosphor_orig/SVGs Flat/regular/arrow-circle-down.svg new file mode 100644 index 0000000..154ca56 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-circle-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-circle-left.svg new file mode 100644 index 0000000..0959db2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-circle-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-circle-right.svg new file mode 100644 index 0000000..74ef0fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-circle-up-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-circle-up-left.svg new file mode 100644 index 0000000..fc01d03 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-circle-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-circle-up-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-circle-up-right.svg new file mode 100644 index 0000000..61f7762 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-circle-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-circle-up.svg b/phosphor_orig/SVGs Flat/regular/arrow-circle-up.svg new file mode 100644 index 0000000..12b8e72 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-clockwise.svg b/phosphor_orig/SVGs Flat/regular/arrow-clockwise.svg new file mode 100644 index 0000000..42d1e48 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-counter-clockwise.svg b/phosphor_orig/SVGs Flat/regular/arrow-counter-clockwise.svg new file mode 100644 index 0000000..5c6b67d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-counter-clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-down-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-down-left.svg new file mode 100644 index 0000000..b6e8a5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-down-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-down-right.svg new file mode 100644 index 0000000..8608452 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-down.svg b/phosphor_orig/SVGs Flat/regular/arrow-down.svg new file mode 100644 index 0000000..0e7629b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-elbow-down-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-elbow-down-left.svg new file mode 100644 index 0000000..4f235b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-elbow-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-elbow-down-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-elbow-down-right.svg new file mode 100644 index 0000000..c2bf180 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-elbow-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-elbow-left-down.svg b/phosphor_orig/SVGs Flat/regular/arrow-elbow-left-down.svg new file mode 100644 index 0000000..a95c766 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-elbow-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-elbow-left-up.svg b/phosphor_orig/SVGs Flat/regular/arrow-elbow-left-up.svg new file mode 100644 index 0000000..94f82b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-elbow-left-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-elbow-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-elbow-left.svg new file mode 100644 index 0000000..c7608ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-elbow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-elbow-right-down.svg b/phosphor_orig/SVGs Flat/regular/arrow-elbow-right-down.svg new file mode 100644 index 0000000..70039d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-elbow-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-elbow-right-up.svg b/phosphor_orig/SVGs Flat/regular/arrow-elbow-right-up.svg new file mode 100644 index 0000000..546d07b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-elbow-right-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-elbow-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-elbow-right.svg new file mode 100644 index 0000000..eb11fcf --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-elbow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-elbow-up-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-elbow-up-left.svg new file mode 100644 index 0000000..4d23714 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-elbow-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-elbow-up-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-elbow-up-right.svg new file mode 100644 index 0000000..b5e0f5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-elbow-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-fat-down.svg b/phosphor_orig/SVGs Flat/regular/arrow-fat-down.svg new file mode 100644 index 0000000..d320c69 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-fat-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-fat-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-fat-left.svg new file mode 100644 index 0000000..a1f5826 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-fat-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-fat-line-down.svg b/phosphor_orig/SVGs Flat/regular/arrow-fat-line-down.svg new file mode 100644 index 0000000..c7cd7da --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-fat-line-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-fat-line-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-fat-line-left.svg new file mode 100644 index 0000000..e0b0903 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-fat-line-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-fat-line-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-fat-line-right.svg new file mode 100644 index 0000000..193600b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-fat-line-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-fat-line-up.svg b/phosphor_orig/SVGs Flat/regular/arrow-fat-line-up.svg new file mode 100644 index 0000000..d1ff1b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-fat-line-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-fat-lines-down.svg b/phosphor_orig/SVGs Flat/regular/arrow-fat-lines-down.svg new file mode 100644 index 0000000..ce24ef7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-fat-lines-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-fat-lines-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-fat-lines-left.svg new file mode 100644 index 0000000..cce10da --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-fat-lines-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-fat-lines-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-fat-lines-right.svg new file mode 100644 index 0000000..ee62d4f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-fat-lines-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-fat-lines-up.svg b/phosphor_orig/SVGs Flat/regular/arrow-fat-lines-up.svg new file mode 100644 index 0000000..b83fe9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-fat-lines-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-fat-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-fat-right.svg new file mode 100644 index 0000000..b976c5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-fat-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-fat-up.svg b/phosphor_orig/SVGs Flat/regular/arrow-fat-up.svg new file mode 100644 index 0000000..331dd40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-fat-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-left.svg new file mode 100644 index 0000000..0d0558a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-line-down-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-line-down-left.svg new file mode 100644 index 0000000..b97d4ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-line-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-line-down-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-line-down-right.svg new file mode 100644 index 0000000..7ed8b07 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-line-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-line-down.svg b/phosphor_orig/SVGs Flat/regular/arrow-line-down.svg new file mode 100644 index 0000000..5c07900 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-line-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-line-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-line-left.svg new file mode 100644 index 0000000..09d6e06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-line-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-line-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-line-right.svg new file mode 100644 index 0000000..b65d253 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-line-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-line-up-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-line-up-left.svg new file mode 100644 index 0000000..299beb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-line-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-line-up-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-line-up-right.svg new file mode 100644 index 0000000..6f8cd93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-line-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-line-up.svg b/phosphor_orig/SVGs Flat/regular/arrow-line-up.svg new file mode 100644 index 0000000..50d641c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-line-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-right.svg new file mode 100644 index 0000000..7ef927e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-square-down-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-square-down-left.svg new file mode 100644 index 0000000..f6dedd7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-square-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-square-down-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-square-down-right.svg new file mode 100644 index 0000000..001d465 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-square-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-square-down.svg b/phosphor_orig/SVGs Flat/regular/arrow-square-down.svg new file mode 100644 index 0000000..76d38bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-square-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-square-in.svg b/phosphor_orig/SVGs Flat/regular/arrow-square-in.svg new file mode 100644 index 0000000..2cd298e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-square-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-square-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-square-left.svg new file mode 100644 index 0000000..d59dcfa --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-square-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-square-out.svg b/phosphor_orig/SVGs Flat/regular/arrow-square-out.svg new file mode 100644 index 0000000..e46b338 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-square-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-square-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-square-right.svg new file mode 100644 index 0000000..42e1ba9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-square-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-square-up-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-square-up-left.svg new file mode 100644 index 0000000..4b6b352 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-square-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-square-up-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-square-up-right.svg new file mode 100644 index 0000000..97c0708 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-square-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-square-up.svg b/phosphor_orig/SVGs Flat/regular/arrow-square-up.svg new file mode 100644 index 0000000..6f91c77 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-square-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-u-down-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-u-down-left.svg new file mode 100644 index 0000000..04fdc5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-u-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-u-down-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-u-down-right.svg new file mode 100644 index 0000000..6b16b00 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-u-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-u-left-down.svg b/phosphor_orig/SVGs Flat/regular/arrow-u-left-down.svg new file mode 100644 index 0000000..f707768 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-u-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-u-left-up.svg b/phosphor_orig/SVGs Flat/regular/arrow-u-left-up.svg new file mode 100644 index 0000000..d55ca05 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-u-left-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-u-right-down.svg b/phosphor_orig/SVGs Flat/regular/arrow-u-right-down.svg new file mode 100644 index 0000000..6d10eb8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-u-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-u-right-up.svg b/phosphor_orig/SVGs Flat/regular/arrow-u-right-up.svg new file mode 100644 index 0000000..c392a07 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-u-right-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-u-up-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-u-up-left.svg new file mode 100644 index 0000000..72326c2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-u-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-u-up-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-u-up-right.svg new file mode 100644 index 0000000..7a94b87 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-u-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-up-left.svg b/phosphor_orig/SVGs Flat/regular/arrow-up-left.svg new file mode 100644 index 0000000..a948e35 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-up-right.svg b/phosphor_orig/SVGs Flat/regular/arrow-up-right.svg new file mode 100644 index 0000000..fc953e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrow-up.svg b/phosphor_orig/SVGs Flat/regular/arrow-up.svg new file mode 100644 index 0000000..a8ba45e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-clockwise.svg b/phosphor_orig/SVGs Flat/regular/arrows-clockwise.svg new file mode 100644 index 0000000..aaae146 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-counter-clockwise.svg b/phosphor_orig/SVGs Flat/regular/arrows-counter-clockwise.svg new file mode 100644 index 0000000..1c1f278 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-counter-clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-down-up.svg b/phosphor_orig/SVGs Flat/regular/arrows-down-up.svg new file mode 100644 index 0000000..b9c507f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-down-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-horizontal.svg b/phosphor_orig/SVGs Flat/regular/arrows-horizontal.svg new file mode 100644 index 0000000..1c4010c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-in-cardinal.svg b/phosphor_orig/SVGs Flat/regular/arrows-in-cardinal.svg new file mode 100644 index 0000000..6bdad22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-in-cardinal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-in-line-horizontal.svg b/phosphor_orig/SVGs Flat/regular/arrows-in-line-horizontal.svg new file mode 100644 index 0000000..cd1421b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-in-line-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-in-line-vertical.svg b/phosphor_orig/SVGs Flat/regular/arrows-in-line-vertical.svg new file mode 100644 index 0000000..6990a71 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-in-line-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-in-simple.svg b/phosphor_orig/SVGs Flat/regular/arrows-in-simple.svg new file mode 100644 index 0000000..d18668e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-in-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-in.svg b/phosphor_orig/SVGs Flat/regular/arrows-in.svg new file mode 100644 index 0000000..1d79227 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-left-right.svg b/phosphor_orig/SVGs Flat/regular/arrows-left-right.svg new file mode 100644 index 0000000..138d087 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-left-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-merge.svg b/phosphor_orig/SVGs Flat/regular/arrows-merge.svg new file mode 100644 index 0000000..ccf9dd0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-out-cardinal.svg b/phosphor_orig/SVGs Flat/regular/arrows-out-cardinal.svg new file mode 100644 index 0000000..7cee672 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-out-cardinal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-out-line-horizontal.svg b/phosphor_orig/SVGs Flat/regular/arrows-out-line-horizontal.svg new file mode 100644 index 0000000..095bc63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-out-line-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-out-line-vertical.svg b/phosphor_orig/SVGs Flat/regular/arrows-out-line-vertical.svg new file mode 100644 index 0000000..1873ef8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-out-line-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-out-simple.svg b/phosphor_orig/SVGs Flat/regular/arrows-out-simple.svg new file mode 100644 index 0000000..359b13f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-out-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-out.svg b/phosphor_orig/SVGs Flat/regular/arrows-out.svg new file mode 100644 index 0000000..9025132 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-split.svg b/phosphor_orig/SVGs Flat/regular/arrows-split.svg new file mode 100644 index 0000000..678e0b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-split.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/arrows-vertical.svg b/phosphor_orig/SVGs Flat/regular/arrows-vertical.svg new file mode 100644 index 0000000..8ee96cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/arrows-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/article-medium.svg b/phosphor_orig/SVGs Flat/regular/article-medium.svg new file mode 100644 index 0000000..04533f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/article-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/article-ny-times.svg b/phosphor_orig/SVGs Flat/regular/article-ny-times.svg new file mode 100644 index 0000000..323389a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/article-ny-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/article.svg b/phosphor_orig/SVGs Flat/regular/article.svg new file mode 100644 index 0000000..d41c91b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/article.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/asclepius.svg b/phosphor_orig/SVGs Flat/regular/asclepius.svg new file mode 100644 index 0000000..18e1bc0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/asclepius.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/asterisk-simple.svg b/phosphor_orig/SVGs Flat/regular/asterisk-simple.svg new file mode 100644 index 0000000..4928fc5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/asterisk-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/asterisk.svg b/phosphor_orig/SVGs Flat/regular/asterisk.svg new file mode 100644 index 0000000..2ca23e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/asterisk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/at.svg b/phosphor_orig/SVGs Flat/regular/at.svg new file mode 100644 index 0000000..582e828 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/atom.svg b/phosphor_orig/SVGs Flat/regular/atom.svg new file mode 100644 index 0000000..b3efd59 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/atom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/avocado.svg b/phosphor_orig/SVGs Flat/regular/avocado.svg new file mode 100644 index 0000000..4769290 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/avocado.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/axe.svg b/phosphor_orig/SVGs Flat/regular/axe.svg new file mode 100644 index 0000000..d17e6f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/axe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/baby-carriage.svg b/phosphor_orig/SVGs Flat/regular/baby-carriage.svg new file mode 100644 index 0000000..68613b0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/baby-carriage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/baby.svg b/phosphor_orig/SVGs Flat/regular/baby.svg new file mode 100644 index 0000000..27d2211 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/baby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/backpack.svg b/phosphor_orig/SVGs Flat/regular/backpack.svg new file mode 100644 index 0000000..aec41a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/backpack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/backspace.svg b/phosphor_orig/SVGs Flat/regular/backspace.svg new file mode 100644 index 0000000..262a9f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/backspace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bag-simple.svg b/phosphor_orig/SVGs Flat/regular/bag-simple.svg new file mode 100644 index 0000000..8e27708 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bag-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bag.svg b/phosphor_orig/SVGs Flat/regular/bag.svg new file mode 100644 index 0000000..7f53c3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/balloon.svg b/phosphor_orig/SVGs Flat/regular/balloon.svg new file mode 100644 index 0000000..21c6a8d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/balloon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bandaids.svg b/phosphor_orig/SVGs Flat/regular/bandaids.svg new file mode 100644 index 0000000..69a0de0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bandaids.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bank.svg b/phosphor_orig/SVGs Flat/regular/bank.svg new file mode 100644 index 0000000..d7a708b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/barbell.svg b/phosphor_orig/SVGs Flat/regular/barbell.svg new file mode 100644 index 0000000..68a6430 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/barbell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/barcode.svg b/phosphor_orig/SVGs Flat/regular/barcode.svg new file mode 100644 index 0000000..2ae7199 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/barcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/barn.svg b/phosphor_orig/SVGs Flat/regular/barn.svg new file mode 100644 index 0000000..b9db30a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/barn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/barricade.svg b/phosphor_orig/SVGs Flat/regular/barricade.svg new file mode 100644 index 0000000..c0784c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/barricade.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/baseball-cap.svg b/phosphor_orig/SVGs Flat/regular/baseball-cap.svg new file mode 100644 index 0000000..aed9cf3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/baseball-cap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/baseball-helmet.svg b/phosphor_orig/SVGs Flat/regular/baseball-helmet.svg new file mode 100644 index 0000000..3ad6ec1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/baseball-helmet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/baseball.svg b/phosphor_orig/SVGs Flat/regular/baseball.svg new file mode 100644 index 0000000..dea39a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/baseball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/basket.svg b/phosphor_orig/SVGs Flat/regular/basket.svg new file mode 100644 index 0000000..b90abbd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/basketball.svg b/phosphor_orig/SVGs Flat/regular/basketball.svg new file mode 100644 index 0000000..1cd78c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/basketball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bathtub.svg b/phosphor_orig/SVGs Flat/regular/bathtub.svg new file mode 100644 index 0000000..432c4f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bathtub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-charging-vertical.svg b/phosphor_orig/SVGs Flat/regular/battery-charging-vertical.svg new file mode 100644 index 0000000..18b314c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-charging-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-charging.svg b/phosphor_orig/SVGs Flat/regular/battery-charging.svg new file mode 100644 index 0000000..5d53927 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-charging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-empty.svg b/phosphor_orig/SVGs Flat/regular/battery-empty.svg new file mode 100644 index 0000000..704ad36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-full.svg b/phosphor_orig/SVGs Flat/regular/battery-full.svg new file mode 100644 index 0000000..efc0125 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-high.svg b/phosphor_orig/SVGs Flat/regular/battery-high.svg new file mode 100644 index 0000000..0d2661d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-low.svg b/phosphor_orig/SVGs Flat/regular/battery-low.svg new file mode 100644 index 0000000..d1e52b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-medium.svg b/phosphor_orig/SVGs Flat/regular/battery-medium.svg new file mode 100644 index 0000000..5bfd4d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-plus-vertical.svg b/phosphor_orig/SVGs Flat/regular/battery-plus-vertical.svg new file mode 100644 index 0000000..851e1ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-plus-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-plus.svg b/phosphor_orig/SVGs Flat/regular/battery-plus.svg new file mode 100644 index 0000000..3277ed8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-vertical-empty.svg b/phosphor_orig/SVGs Flat/regular/battery-vertical-empty.svg new file mode 100644 index 0000000..ae869e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-vertical-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-vertical-full.svg b/phosphor_orig/SVGs Flat/regular/battery-vertical-full.svg new file mode 100644 index 0000000..66add43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-vertical-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-vertical-high.svg b/phosphor_orig/SVGs Flat/regular/battery-vertical-high.svg new file mode 100644 index 0000000..6273be4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-vertical-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-vertical-low.svg b/phosphor_orig/SVGs Flat/regular/battery-vertical-low.svg new file mode 100644 index 0000000..4e87312 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-vertical-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-vertical-medium.svg b/phosphor_orig/SVGs Flat/regular/battery-vertical-medium.svg new file mode 100644 index 0000000..9c90f62 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-vertical-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-warning-vertical.svg b/phosphor_orig/SVGs Flat/regular/battery-warning-vertical.svg new file mode 100644 index 0000000..0954652 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-warning-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/battery-warning.svg b/phosphor_orig/SVGs Flat/regular/battery-warning.svg new file mode 100644 index 0000000..7ca0cc6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/battery-warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/beach-ball.svg b/phosphor_orig/SVGs Flat/regular/beach-ball.svg new file mode 100644 index 0000000..b5489c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/beach-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/beanie.svg b/phosphor_orig/SVGs Flat/regular/beanie.svg new file mode 100644 index 0000000..5f7fa0b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/beanie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bed.svg b/phosphor_orig/SVGs Flat/regular/bed.svg new file mode 100644 index 0000000..b79224d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/beer-bottle.svg b/phosphor_orig/SVGs Flat/regular/beer-bottle.svg new file mode 100644 index 0000000..fef994e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/beer-bottle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/beer-stein.svg b/phosphor_orig/SVGs Flat/regular/beer-stein.svg new file mode 100644 index 0000000..c1ba95f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/beer-stein.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/behance-logo.svg b/phosphor_orig/SVGs Flat/regular/behance-logo.svg new file mode 100644 index 0000000..a247ac2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/behance-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bell-ringing.svg b/phosphor_orig/SVGs Flat/regular/bell-ringing.svg new file mode 100644 index 0000000..5b9ec98 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bell-ringing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bell-simple-ringing.svg b/phosphor_orig/SVGs Flat/regular/bell-simple-ringing.svg new file mode 100644 index 0000000..18d6178 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bell-simple-ringing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bell-simple-slash.svg b/phosphor_orig/SVGs Flat/regular/bell-simple-slash.svg new file mode 100644 index 0000000..3573f22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bell-simple-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bell-simple-z.svg b/phosphor_orig/SVGs Flat/regular/bell-simple-z.svg new file mode 100644 index 0000000..86ab2ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bell-simple-z.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bell-simple.svg b/phosphor_orig/SVGs Flat/regular/bell-simple.svg new file mode 100644 index 0000000..48a4856 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bell-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bell-slash.svg b/phosphor_orig/SVGs Flat/regular/bell-slash.svg new file mode 100644 index 0000000..2d6aec0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bell-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bell-z.svg b/phosphor_orig/SVGs Flat/regular/bell-z.svg new file mode 100644 index 0000000..ea3803e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bell-z.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bell.svg b/phosphor_orig/SVGs Flat/regular/bell.svg new file mode 100644 index 0000000..bc9f9a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/belt.svg b/phosphor_orig/SVGs Flat/regular/belt.svg new file mode 100644 index 0000000..b58d471 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/belt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bezier-curve.svg b/phosphor_orig/SVGs Flat/regular/bezier-curve.svg new file mode 100644 index 0000000..a57146d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bezier-curve.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bicycle.svg b/phosphor_orig/SVGs Flat/regular/bicycle.svg new file mode 100644 index 0000000..9e82de7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bicycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/binary.svg b/phosphor_orig/SVGs Flat/regular/binary.svg new file mode 100644 index 0000000..f6ac548 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/binary.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/binoculars.svg b/phosphor_orig/SVGs Flat/regular/binoculars.svg new file mode 100644 index 0000000..bd65aa0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/binoculars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/biohazard.svg b/phosphor_orig/SVGs Flat/regular/biohazard.svg new file mode 100644 index 0000000..b571b52 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/biohazard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bird.svg b/phosphor_orig/SVGs Flat/regular/bird.svg new file mode 100644 index 0000000..29bcbf0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bird.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/blueprint.svg b/phosphor_orig/SVGs Flat/regular/blueprint.svg new file mode 100644 index 0000000..a3ddd2a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/blueprint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bluetooth-connected.svg b/phosphor_orig/SVGs Flat/regular/bluetooth-connected.svg new file mode 100644 index 0000000..afd3ec9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bluetooth-connected.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bluetooth-slash.svg b/phosphor_orig/SVGs Flat/regular/bluetooth-slash.svg new file mode 100644 index 0000000..c449cb1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bluetooth-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bluetooth-x.svg b/phosphor_orig/SVGs Flat/regular/bluetooth-x.svg new file mode 100644 index 0000000..79b8fc8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bluetooth-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bluetooth.svg b/phosphor_orig/SVGs Flat/regular/bluetooth.svg new file mode 100644 index 0000000..718bc0a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/boat.svg b/phosphor_orig/SVGs Flat/regular/boat.svg new file mode 100644 index 0000000..b8bb5df --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/boat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bomb.svg b/phosphor_orig/SVGs Flat/regular/bomb.svg new file mode 100644 index 0000000..370cec8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bomb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bone.svg b/phosphor_orig/SVGs Flat/regular/bone.svg new file mode 100644 index 0000000..6255cc1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/book-bookmark.svg b/phosphor_orig/SVGs Flat/regular/book-bookmark.svg new file mode 100644 index 0000000..fd7c407 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/book-bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/book-open-text.svg b/phosphor_orig/SVGs Flat/regular/book-open-text.svg new file mode 100644 index 0000000..9186892 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/book-open-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/book-open.svg b/phosphor_orig/SVGs Flat/regular/book-open.svg new file mode 100644 index 0000000..2909321 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/book-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/book-user.svg b/phosphor_orig/SVGs Flat/regular/book-user.svg new file mode 100644 index 0000000..f7a511f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/book-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/book.svg b/phosphor_orig/SVGs Flat/regular/book.svg new file mode 100644 index 0000000..9d0a073 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bookmark-simple.svg b/phosphor_orig/SVGs Flat/regular/bookmark-simple.svg new file mode 100644 index 0000000..8429ae9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bookmark-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bookmark.svg b/phosphor_orig/SVGs Flat/regular/bookmark.svg new file mode 100644 index 0000000..a6dbee0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bookmarks-simple.svg b/phosphor_orig/SVGs Flat/regular/bookmarks-simple.svg new file mode 100644 index 0000000..e693237 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bookmarks-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bookmarks.svg b/phosphor_orig/SVGs Flat/regular/bookmarks.svg new file mode 100644 index 0000000..2b76c0c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bookmarks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/books.svg b/phosphor_orig/SVGs Flat/regular/books.svg new file mode 100644 index 0000000..8093f4b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/books.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/boot.svg b/phosphor_orig/SVGs Flat/regular/boot.svg new file mode 100644 index 0000000..dace74d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/boot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/boules.svg b/phosphor_orig/SVGs Flat/regular/boules.svg new file mode 100644 index 0000000..bc0b9bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/boules.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bounding-box.svg b/phosphor_orig/SVGs Flat/regular/bounding-box.svg new file mode 100644 index 0000000..72db4bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bounding-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bowl-food.svg b/phosphor_orig/SVGs Flat/regular/bowl-food.svg new file mode 100644 index 0000000..445a368 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bowl-food.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bowl-steam.svg b/phosphor_orig/SVGs Flat/regular/bowl-steam.svg new file mode 100644 index 0000000..2b88bd4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bowl-steam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bowling-ball.svg b/phosphor_orig/SVGs Flat/regular/bowling-ball.svg new file mode 100644 index 0000000..ef4ac68 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bowling-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/box-arrow-down.svg b/phosphor_orig/SVGs Flat/regular/box-arrow-down.svg new file mode 100644 index 0000000..7f6a5c3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/box-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/box-arrow-up.svg b/phosphor_orig/SVGs Flat/regular/box-arrow-up.svg new file mode 100644 index 0000000..03782ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/box-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/boxing-glove.svg b/phosphor_orig/SVGs Flat/regular/boxing-glove.svg new file mode 100644 index 0000000..0709b93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/boxing-glove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/brackets-angle.svg b/phosphor_orig/SVGs Flat/regular/brackets-angle.svg new file mode 100644 index 0000000..9f6324c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/brackets-angle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/brackets-curly.svg b/phosphor_orig/SVGs Flat/regular/brackets-curly.svg new file mode 100644 index 0000000..369c230 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/brackets-curly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/brackets-round.svg b/phosphor_orig/SVGs Flat/regular/brackets-round.svg new file mode 100644 index 0000000..9a74a96 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/brackets-round.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/brackets-square.svg b/phosphor_orig/SVGs Flat/regular/brackets-square.svg new file mode 100644 index 0000000..7a34ae2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/brackets-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/brain.svg b/phosphor_orig/SVGs Flat/regular/brain.svg new file mode 100644 index 0000000..6fd69af --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/brain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/brandy.svg b/phosphor_orig/SVGs Flat/regular/brandy.svg new file mode 100644 index 0000000..4fb458f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/brandy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bread.svg b/phosphor_orig/SVGs Flat/regular/bread.svg new file mode 100644 index 0000000..379b1eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bread.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bridge.svg b/phosphor_orig/SVGs Flat/regular/bridge.svg new file mode 100644 index 0000000..eb7655c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bridge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/briefcase-metal.svg b/phosphor_orig/SVGs Flat/regular/briefcase-metal.svg new file mode 100644 index 0000000..d6fad11 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/briefcase-metal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/briefcase.svg b/phosphor_orig/SVGs Flat/regular/briefcase.svg new file mode 100644 index 0000000..17cce72 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/broadcast.svg b/phosphor_orig/SVGs Flat/regular/broadcast.svg new file mode 100644 index 0000000..cb05228 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/broadcast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/broom.svg b/phosphor_orig/SVGs Flat/regular/broom.svg new file mode 100644 index 0000000..f678fa0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/broom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/browser.svg b/phosphor_orig/SVGs Flat/regular/browser.svg new file mode 100644 index 0000000..9bdbe4c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/browser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/browsers.svg b/phosphor_orig/SVGs Flat/regular/browsers.svg new file mode 100644 index 0000000..cfab5c2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/browsers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bug-beetle.svg b/phosphor_orig/SVGs Flat/regular/bug-beetle.svg new file mode 100644 index 0000000..3b8e7b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bug-beetle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bug-droid.svg b/phosphor_orig/SVGs Flat/regular/bug-droid.svg new file mode 100644 index 0000000..e4b8b79 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bug-droid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bug.svg b/phosphor_orig/SVGs Flat/regular/bug.svg new file mode 100644 index 0000000..d562a09 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/building-apartment.svg b/phosphor_orig/SVGs Flat/regular/building-apartment.svg new file mode 100644 index 0000000..9544b36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/building-apartment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/building-office.svg b/phosphor_orig/SVGs Flat/regular/building-office.svg new file mode 100644 index 0000000..af93777 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/building-office.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/building.svg b/phosphor_orig/SVGs Flat/regular/building.svg new file mode 100644 index 0000000..442cb1e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/building.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/buildings.svg b/phosphor_orig/SVGs Flat/regular/buildings.svg new file mode 100644 index 0000000..3792600 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/buildings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bulldozer.svg b/phosphor_orig/SVGs Flat/regular/bulldozer.svg new file mode 100644 index 0000000..20add6c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bulldozer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/bus.svg b/phosphor_orig/SVGs Flat/regular/bus.svg new file mode 100644 index 0000000..b0fb4b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/bus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/butterfly.svg b/phosphor_orig/SVGs Flat/regular/butterfly.svg new file mode 100644 index 0000000..dd506dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/butterfly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cable-car.svg b/phosphor_orig/SVGs Flat/regular/cable-car.svg new file mode 100644 index 0000000..a592433 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cable-car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cactus.svg b/phosphor_orig/SVGs Flat/regular/cactus.svg new file mode 100644 index 0000000..7ca180c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cactus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cake.svg b/phosphor_orig/SVGs Flat/regular/cake.svg new file mode 100644 index 0000000..b7438cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/calculator.svg b/phosphor_orig/SVGs Flat/regular/calculator.svg new file mode 100644 index 0000000..d7ac1be --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/calculator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/calendar-blank.svg b/phosphor_orig/SVGs Flat/regular/calendar-blank.svg new file mode 100644 index 0000000..355d17d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/calendar-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/calendar-check.svg b/phosphor_orig/SVGs Flat/regular/calendar-check.svg new file mode 100644 index 0000000..41a49d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/calendar-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/calendar-dot.svg b/phosphor_orig/SVGs Flat/regular/calendar-dot.svg new file mode 100644 index 0000000..962e016 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/calendar-dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/calendar-dots.svg b/phosphor_orig/SVGs Flat/regular/calendar-dots.svg new file mode 100644 index 0000000..e55bdad --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/calendar-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/calendar-heart.svg b/phosphor_orig/SVGs Flat/regular/calendar-heart.svg new file mode 100644 index 0000000..3ce327e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/calendar-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/calendar-minus.svg b/phosphor_orig/SVGs Flat/regular/calendar-minus.svg new file mode 100644 index 0000000..5654aee --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/calendar-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/calendar-plus.svg b/phosphor_orig/SVGs Flat/regular/calendar-plus.svg new file mode 100644 index 0000000..55d4730 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/calendar-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/calendar-slash.svg b/phosphor_orig/SVGs Flat/regular/calendar-slash.svg new file mode 100644 index 0000000..8473f61 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/calendar-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/calendar-star.svg b/phosphor_orig/SVGs Flat/regular/calendar-star.svg new file mode 100644 index 0000000..214de4a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/calendar-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/calendar-x.svg b/phosphor_orig/SVGs Flat/regular/calendar-x.svg new file mode 100644 index 0000000..b37ee26 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/calendar-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/calendar.svg b/phosphor_orig/SVGs Flat/regular/calendar.svg new file mode 100644 index 0000000..791b714 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/call-bell.svg b/phosphor_orig/SVGs Flat/regular/call-bell.svg new file mode 100644 index 0000000..2c44ba1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/call-bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/camera-plus.svg b/phosphor_orig/SVGs Flat/regular/camera-plus.svg new file mode 100644 index 0000000..4da29d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/camera-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/camera-rotate.svg b/phosphor_orig/SVGs Flat/regular/camera-rotate.svg new file mode 100644 index 0000000..914f505 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/camera-rotate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/camera-slash.svg b/phosphor_orig/SVGs Flat/regular/camera-slash.svg new file mode 100644 index 0000000..f81cab7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/camera-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/camera.svg b/phosphor_orig/SVGs Flat/regular/camera.svg new file mode 100644 index 0000000..0c8b649 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/campfire.svg b/phosphor_orig/SVGs Flat/regular/campfire.svg new file mode 100644 index 0000000..d87254d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/campfire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/car-battery.svg b/phosphor_orig/SVGs Flat/regular/car-battery.svg new file mode 100644 index 0000000..1b24dd5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/car-battery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/car-profile.svg b/phosphor_orig/SVGs Flat/regular/car-profile.svg new file mode 100644 index 0000000..f4a21df --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/car-profile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/car-simple.svg b/phosphor_orig/SVGs Flat/regular/car-simple.svg new file mode 100644 index 0000000..9c817c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/car-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/car.svg b/phosphor_orig/SVGs Flat/regular/car.svg new file mode 100644 index 0000000..b254ea4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cardholder.svg b/phosphor_orig/SVGs Flat/regular/cardholder.svg new file mode 100644 index 0000000..eacd40e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cardholder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cards-three.svg b/phosphor_orig/SVGs Flat/regular/cards-three.svg new file mode 100644 index 0000000..98da700 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cards-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cards.svg b/phosphor_orig/SVGs Flat/regular/cards.svg new file mode 100644 index 0000000..bc8c56a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cards.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-circle-double-down.svg b/phosphor_orig/SVGs Flat/regular/caret-circle-double-down.svg new file mode 100644 index 0000000..fedf49b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-circle-double-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-circle-double-left.svg b/phosphor_orig/SVGs Flat/regular/caret-circle-double-left.svg new file mode 100644 index 0000000..605269d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-circle-double-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-circle-double-right.svg b/phosphor_orig/SVGs Flat/regular/caret-circle-double-right.svg new file mode 100644 index 0000000..a88a6fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-circle-double-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-circle-double-up.svg b/phosphor_orig/SVGs Flat/regular/caret-circle-double-up.svg new file mode 100644 index 0000000..650c2e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-circle-double-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-circle-down.svg b/phosphor_orig/SVGs Flat/regular/caret-circle-down.svg new file mode 100644 index 0000000..ca95d90 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-circle-left.svg b/phosphor_orig/SVGs Flat/regular/caret-circle-left.svg new file mode 100644 index 0000000..9a8500c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-circle-right.svg b/phosphor_orig/SVGs Flat/regular/caret-circle-right.svg new file mode 100644 index 0000000..499ce34 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-circle-up-down.svg b/phosphor_orig/SVGs Flat/regular/caret-circle-up-down.svg new file mode 100644 index 0000000..da2c618 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-circle-up-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-circle-up.svg b/phosphor_orig/SVGs Flat/regular/caret-circle-up.svg new file mode 100644 index 0000000..6d9b2c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-double-down.svg b/phosphor_orig/SVGs Flat/regular/caret-double-down.svg new file mode 100644 index 0000000..207b6da --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-double-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-double-left.svg b/phosphor_orig/SVGs Flat/regular/caret-double-left.svg new file mode 100644 index 0000000..7645873 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-double-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-double-right.svg b/phosphor_orig/SVGs Flat/regular/caret-double-right.svg new file mode 100644 index 0000000..1ae4648 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-double-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-double-up.svg b/phosphor_orig/SVGs Flat/regular/caret-double-up.svg new file mode 100644 index 0000000..0b08700 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-double-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-down.svg b/phosphor_orig/SVGs Flat/regular/caret-down.svg new file mode 100644 index 0000000..c6e84e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-left.svg b/phosphor_orig/SVGs Flat/regular/caret-left.svg new file mode 100644 index 0000000..c68102c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-line-down.svg b/phosphor_orig/SVGs Flat/regular/caret-line-down.svg new file mode 100644 index 0000000..5acb409 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-line-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-line-left.svg b/phosphor_orig/SVGs Flat/regular/caret-line-left.svg new file mode 100644 index 0000000..5aa552d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-line-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-line-right.svg b/phosphor_orig/SVGs Flat/regular/caret-line-right.svg new file mode 100644 index 0000000..b8dc678 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-line-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-line-up.svg b/phosphor_orig/SVGs Flat/regular/caret-line-up.svg new file mode 100644 index 0000000..9cc109b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-line-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-right.svg b/phosphor_orig/SVGs Flat/regular/caret-right.svg new file mode 100644 index 0000000..d73dd5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-up-down.svg b/phosphor_orig/SVGs Flat/regular/caret-up-down.svg new file mode 100644 index 0000000..f2c8f4c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-up-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/caret-up.svg b/phosphor_orig/SVGs Flat/regular/caret-up.svg new file mode 100644 index 0000000..75b39aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/caret-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/carrot.svg b/phosphor_orig/SVGs Flat/regular/carrot.svg new file mode 100644 index 0000000..0664f9f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/carrot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cash-register.svg b/phosphor_orig/SVGs Flat/regular/cash-register.svg new file mode 100644 index 0000000..b8e4a5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cash-register.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cassette-tape.svg b/phosphor_orig/SVGs Flat/regular/cassette-tape.svg new file mode 100644 index 0000000..ed17589 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cassette-tape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/castle-turret.svg b/phosphor_orig/SVGs Flat/regular/castle-turret.svg new file mode 100644 index 0000000..0d50b95 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/castle-turret.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cat.svg b/phosphor_orig/SVGs Flat/regular/cat.svg new file mode 100644 index 0000000..c620f97 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cell-signal-full.svg b/phosphor_orig/SVGs Flat/regular/cell-signal-full.svg new file mode 100644 index 0000000..c005f14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cell-signal-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cell-signal-high.svg b/phosphor_orig/SVGs Flat/regular/cell-signal-high.svg new file mode 100644 index 0000000..e063878 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cell-signal-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cell-signal-low.svg b/phosphor_orig/SVGs Flat/regular/cell-signal-low.svg new file mode 100644 index 0000000..c33d87b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cell-signal-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cell-signal-medium.svg b/phosphor_orig/SVGs Flat/regular/cell-signal-medium.svg new file mode 100644 index 0000000..acc7c00 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cell-signal-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cell-signal-none.svg b/phosphor_orig/SVGs Flat/regular/cell-signal-none.svg new file mode 100644 index 0000000..89c7cac --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cell-signal-none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cell-signal-slash.svg b/phosphor_orig/SVGs Flat/regular/cell-signal-slash.svg new file mode 100644 index 0000000..ce33344 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cell-signal-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cell-signal-x.svg b/phosphor_orig/SVGs Flat/regular/cell-signal-x.svg new file mode 100644 index 0000000..872578a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cell-signal-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cell-tower.svg b/phosphor_orig/SVGs Flat/regular/cell-tower.svg new file mode 100644 index 0000000..8473b31 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cell-tower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/certificate.svg b/phosphor_orig/SVGs Flat/regular/certificate.svg new file mode 100644 index 0000000..f6d1a34 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/certificate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chair.svg b/phosphor_orig/SVGs Flat/regular/chair.svg new file mode 100644 index 0000000..e2a35b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chalkboard-simple.svg b/phosphor_orig/SVGs Flat/regular/chalkboard-simple.svg new file mode 100644 index 0000000..5fafb81 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chalkboard-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chalkboard-teacher.svg b/phosphor_orig/SVGs Flat/regular/chalkboard-teacher.svg new file mode 100644 index 0000000..14be75b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chalkboard-teacher.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chalkboard.svg b/phosphor_orig/SVGs Flat/regular/chalkboard.svg new file mode 100644 index 0000000..b944a70 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chalkboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/champagne.svg b/phosphor_orig/SVGs Flat/regular/champagne.svg new file mode 100644 index 0000000..655447d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/champagne.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/charging-station.svg b/phosphor_orig/SVGs Flat/regular/charging-station.svg new file mode 100644 index 0000000..b54ff54 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/charging-station.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chart-bar-horizontal.svg b/phosphor_orig/SVGs Flat/regular/chart-bar-horizontal.svg new file mode 100644 index 0000000..1f8ecca --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chart-bar-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chart-bar.svg b/phosphor_orig/SVGs Flat/regular/chart-bar.svg new file mode 100644 index 0000000..02451a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chart-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chart-donut.svg b/phosphor_orig/SVGs Flat/regular/chart-donut.svg new file mode 100644 index 0000000..bce25cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chart-donut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chart-line-down.svg b/phosphor_orig/SVGs Flat/regular/chart-line-down.svg new file mode 100644 index 0000000..b5ed2c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chart-line-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chart-line-up.svg b/phosphor_orig/SVGs Flat/regular/chart-line-up.svg new file mode 100644 index 0000000..f300b5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chart-line-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chart-line.svg b/phosphor_orig/SVGs Flat/regular/chart-line.svg new file mode 100644 index 0000000..b3fe67a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chart-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chart-pie-slice.svg b/phosphor_orig/SVGs Flat/regular/chart-pie-slice.svg new file mode 100644 index 0000000..d859e36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chart-pie-slice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chart-pie.svg b/phosphor_orig/SVGs Flat/regular/chart-pie.svg new file mode 100644 index 0000000..7fb191c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chart-pie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chart-polar.svg b/phosphor_orig/SVGs Flat/regular/chart-polar.svg new file mode 100644 index 0000000..c0348df --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chart-polar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chart-scatter.svg b/phosphor_orig/SVGs Flat/regular/chart-scatter.svg new file mode 100644 index 0000000..9c2e733 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chart-scatter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat-centered-dots.svg b/phosphor_orig/SVGs Flat/regular/chat-centered-dots.svg new file mode 100644 index 0000000..9e9b954 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat-centered-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat-centered-slash.svg b/phosphor_orig/SVGs Flat/regular/chat-centered-slash.svg new file mode 100644 index 0000000..eed3a49 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat-centered-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat-centered-text.svg b/phosphor_orig/SVGs Flat/regular/chat-centered-text.svg new file mode 100644 index 0000000..6ba27a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat-centered-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat-centered.svg b/phosphor_orig/SVGs Flat/regular/chat-centered.svg new file mode 100644 index 0000000..f5d77fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat-centered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat-circle-dots.svg b/phosphor_orig/SVGs Flat/regular/chat-circle-dots.svg new file mode 100644 index 0000000..f8ef2d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat-circle-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat-circle-slash.svg b/phosphor_orig/SVGs Flat/regular/chat-circle-slash.svg new file mode 100644 index 0000000..a2ce13f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat-circle-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat-circle-text.svg b/phosphor_orig/SVGs Flat/regular/chat-circle-text.svg new file mode 100644 index 0000000..38d9cf0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat-circle-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat-circle.svg b/phosphor_orig/SVGs Flat/regular/chat-circle.svg new file mode 100644 index 0000000..4b84429 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat-dots.svg b/phosphor_orig/SVGs Flat/regular/chat-dots.svg new file mode 100644 index 0000000..f058b2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat-slash.svg b/phosphor_orig/SVGs Flat/regular/chat-slash.svg new file mode 100644 index 0000000..ebd23a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat-teardrop-dots.svg b/phosphor_orig/SVGs Flat/regular/chat-teardrop-dots.svg new file mode 100644 index 0000000..add2558 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat-teardrop-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat-teardrop-slash.svg b/phosphor_orig/SVGs Flat/regular/chat-teardrop-slash.svg new file mode 100644 index 0000000..868a1a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat-teardrop-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat-teardrop-text.svg b/phosphor_orig/SVGs Flat/regular/chat-teardrop-text.svg new file mode 100644 index 0000000..821e7bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat-teardrop-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat-teardrop.svg b/phosphor_orig/SVGs Flat/regular/chat-teardrop.svg new file mode 100644 index 0000000..0b234da --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat-teardrop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat-text.svg b/phosphor_orig/SVGs Flat/regular/chat-text.svg new file mode 100644 index 0000000..aba6204 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chat.svg b/phosphor_orig/SVGs Flat/regular/chat.svg new file mode 100644 index 0000000..a6c33e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chats-circle.svg b/phosphor_orig/SVGs Flat/regular/chats-circle.svg new file mode 100644 index 0000000..e537b0f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chats-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chats-teardrop.svg b/phosphor_orig/SVGs Flat/regular/chats-teardrop.svg new file mode 100644 index 0000000..26e629e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chats-teardrop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chats.svg b/phosphor_orig/SVGs Flat/regular/chats.svg new file mode 100644 index 0000000..2887747 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chats.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/check-circle.svg b/phosphor_orig/SVGs Flat/regular/check-circle.svg new file mode 100644 index 0000000..eb40609 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/check-fat.svg b/phosphor_orig/SVGs Flat/regular/check-fat.svg new file mode 100644 index 0000000..6a39604 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/check-fat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/check-square-offset.svg b/phosphor_orig/SVGs Flat/regular/check-square-offset.svg new file mode 100644 index 0000000..51d79d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/check-square-offset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/check-square.svg b/phosphor_orig/SVGs Flat/regular/check-square.svg new file mode 100644 index 0000000..d85c285 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/check-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/check.svg b/phosphor_orig/SVGs Flat/regular/check.svg new file mode 100644 index 0000000..04b2e24 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/checkerboard.svg b/phosphor_orig/SVGs Flat/regular/checkerboard.svg new file mode 100644 index 0000000..e825374 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/checkerboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/checks.svg b/phosphor_orig/SVGs Flat/regular/checks.svg new file mode 100644 index 0000000..4c81097 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/checks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cheers.svg b/phosphor_orig/SVGs Flat/regular/cheers.svg new file mode 100644 index 0000000..ee6a2a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cheers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cheese.svg b/phosphor_orig/SVGs Flat/regular/cheese.svg new file mode 100644 index 0000000..47edd38 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cheese.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/chef-hat.svg b/phosphor_orig/SVGs Flat/regular/chef-hat.svg new file mode 100644 index 0000000..63df183 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/chef-hat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cherries.svg b/phosphor_orig/SVGs Flat/regular/cherries.svg new file mode 100644 index 0000000..3513be1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cherries.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/church.svg b/phosphor_orig/SVGs Flat/regular/church.svg new file mode 100644 index 0000000..92593af --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/church.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cigarette-slash.svg b/phosphor_orig/SVGs Flat/regular/cigarette-slash.svg new file mode 100644 index 0000000..46ee1e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cigarette-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cigarette.svg b/phosphor_orig/SVGs Flat/regular/cigarette.svg new file mode 100644 index 0000000..13d4870 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cigarette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/circle-dashed.svg b/phosphor_orig/SVGs Flat/regular/circle-dashed.svg new file mode 100644 index 0000000..a7f4262 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/circle-dashed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/circle-half-tilt.svg b/phosphor_orig/SVGs Flat/regular/circle-half-tilt.svg new file mode 100644 index 0000000..131d0c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/circle-half-tilt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/circle-half.svg b/phosphor_orig/SVGs Flat/regular/circle-half.svg new file mode 100644 index 0000000..7c8d2d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/circle-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/circle-notch.svg b/phosphor_orig/SVGs Flat/regular/circle-notch.svg new file mode 100644 index 0000000..05e9cd3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/circle-notch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/circle.svg b/phosphor_orig/SVGs Flat/regular/circle.svg new file mode 100644 index 0000000..e7b12e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/circles-four.svg b/phosphor_orig/SVGs Flat/regular/circles-four.svg new file mode 100644 index 0000000..f870158 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/circles-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/circles-three-plus.svg b/phosphor_orig/SVGs Flat/regular/circles-three-plus.svg new file mode 100644 index 0000000..85d0d95 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/circles-three-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/circles-three.svg b/phosphor_orig/SVGs Flat/regular/circles-three.svg new file mode 100644 index 0000000..0b05d18 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/circles-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/circuitry.svg b/phosphor_orig/SVGs Flat/regular/circuitry.svg new file mode 100644 index 0000000..f6cfb58 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/circuitry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/city.svg b/phosphor_orig/SVGs Flat/regular/city.svg new file mode 100644 index 0000000..d25a338 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/city.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/clipboard-text.svg b/phosphor_orig/SVGs Flat/regular/clipboard-text.svg new file mode 100644 index 0000000..0da38e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/clipboard-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/clipboard.svg b/phosphor_orig/SVGs Flat/regular/clipboard.svg new file mode 100644 index 0000000..e671860 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/clock-afternoon.svg b/phosphor_orig/SVGs Flat/regular/clock-afternoon.svg new file mode 100644 index 0000000..bd6ab20 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/clock-afternoon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/clock-clockwise.svg b/phosphor_orig/SVGs Flat/regular/clock-clockwise.svg new file mode 100644 index 0000000..aaa7919 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/clock-clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/clock-countdown.svg b/phosphor_orig/SVGs Flat/regular/clock-countdown.svg new file mode 100644 index 0000000..d377a6b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/clock-countdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/clock-counter-clockwise.svg b/phosphor_orig/SVGs Flat/regular/clock-counter-clockwise.svg new file mode 100644 index 0000000..d05eb17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/clock-counter-clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/clock-user.svg b/phosphor_orig/SVGs Flat/regular/clock-user.svg new file mode 100644 index 0000000..65772bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/clock-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/clock.svg b/phosphor_orig/SVGs Flat/regular/clock.svg new file mode 100644 index 0000000..decf49e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/closed-captioning.svg b/phosphor_orig/SVGs Flat/regular/closed-captioning.svg new file mode 100644 index 0000000..300ef40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/closed-captioning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cloud-arrow-down.svg b/phosphor_orig/SVGs Flat/regular/cloud-arrow-down.svg new file mode 100644 index 0000000..19261e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cloud-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cloud-arrow-up.svg b/phosphor_orig/SVGs Flat/regular/cloud-arrow-up.svg new file mode 100644 index 0000000..bfda437 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cloud-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cloud-check.svg b/phosphor_orig/SVGs Flat/regular/cloud-check.svg new file mode 100644 index 0000000..83b758f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cloud-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cloud-fog.svg b/phosphor_orig/SVGs Flat/regular/cloud-fog.svg new file mode 100644 index 0000000..cc23d19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cloud-fog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cloud-lightning.svg b/phosphor_orig/SVGs Flat/regular/cloud-lightning.svg new file mode 100644 index 0000000..e2910c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cloud-lightning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cloud-moon.svg b/phosphor_orig/SVGs Flat/regular/cloud-moon.svg new file mode 100644 index 0000000..3556090 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cloud-moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cloud-rain.svg b/phosphor_orig/SVGs Flat/regular/cloud-rain.svg new file mode 100644 index 0000000..5248755 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cloud-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cloud-slash.svg b/phosphor_orig/SVGs Flat/regular/cloud-slash.svg new file mode 100644 index 0000000..15e71c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cloud-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cloud-snow.svg b/phosphor_orig/SVGs Flat/regular/cloud-snow.svg new file mode 100644 index 0000000..afc9de7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cloud-snow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cloud-sun.svg b/phosphor_orig/SVGs Flat/regular/cloud-sun.svg new file mode 100644 index 0000000..c666f2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cloud-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cloud-warning.svg b/phosphor_orig/SVGs Flat/regular/cloud-warning.svg new file mode 100644 index 0000000..c929da7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cloud-warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cloud-x.svg b/phosphor_orig/SVGs Flat/regular/cloud-x.svg new file mode 100644 index 0000000..fa430f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cloud-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cloud.svg b/phosphor_orig/SVGs Flat/regular/cloud.svg new file mode 100644 index 0000000..3aa44d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/clover.svg b/phosphor_orig/SVGs Flat/regular/clover.svg new file mode 100644 index 0000000..aed8145 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/clover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/club.svg b/phosphor_orig/SVGs Flat/regular/club.svg new file mode 100644 index 0000000..024b139 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/club.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/coat-hanger.svg b/phosphor_orig/SVGs Flat/regular/coat-hanger.svg new file mode 100644 index 0000000..7fe1a6c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/coat-hanger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/coda-logo.svg b/phosphor_orig/SVGs Flat/regular/coda-logo.svg new file mode 100644 index 0000000..d38a6d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/coda-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/code-block.svg b/phosphor_orig/SVGs Flat/regular/code-block.svg new file mode 100644 index 0000000..698e50d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/code-block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/code-simple.svg b/phosphor_orig/SVGs Flat/regular/code-simple.svg new file mode 100644 index 0000000..4d35dce --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/code-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/code.svg b/phosphor_orig/SVGs Flat/regular/code.svg new file mode 100644 index 0000000..3efc4c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/codepen-logo.svg b/phosphor_orig/SVGs Flat/regular/codepen-logo.svg new file mode 100644 index 0000000..3c432c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/codepen-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/codesandbox-logo.svg b/phosphor_orig/SVGs Flat/regular/codesandbox-logo.svg new file mode 100644 index 0000000..1fd7ee0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/codesandbox-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/coffee-bean.svg b/phosphor_orig/SVGs Flat/regular/coffee-bean.svg new file mode 100644 index 0000000..60ab4fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/coffee-bean.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/coffee.svg b/phosphor_orig/SVGs Flat/regular/coffee.svg new file mode 100644 index 0000000..da19005 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/coffee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/coin-vertical.svg b/phosphor_orig/SVGs Flat/regular/coin-vertical.svg new file mode 100644 index 0000000..a1336ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/coin-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/coin.svg b/phosphor_orig/SVGs Flat/regular/coin.svg new file mode 100644 index 0000000..67df575 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/coin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/coins.svg b/phosphor_orig/SVGs Flat/regular/coins.svg new file mode 100644 index 0000000..1d0f86a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/coins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/columns-plus-left.svg b/phosphor_orig/SVGs Flat/regular/columns-plus-left.svg new file mode 100644 index 0000000..1719be6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/columns-plus-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/columns-plus-right.svg b/phosphor_orig/SVGs Flat/regular/columns-plus-right.svg new file mode 100644 index 0000000..c8b544d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/columns-plus-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/columns.svg b/phosphor_orig/SVGs Flat/regular/columns.svg new file mode 100644 index 0000000..d49fadf --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/command.svg b/phosphor_orig/SVGs Flat/regular/command.svg new file mode 100644 index 0000000..6a597c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/command.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/compass-rose.svg b/phosphor_orig/SVGs Flat/regular/compass-rose.svg new file mode 100644 index 0000000..1ba3cce --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/compass-rose.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/compass-tool.svg b/phosphor_orig/SVGs Flat/regular/compass-tool.svg new file mode 100644 index 0000000..6c2cc8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/compass-tool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/compass.svg b/phosphor_orig/SVGs Flat/regular/compass.svg new file mode 100644 index 0000000..ebea40b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/computer-tower.svg b/phosphor_orig/SVGs Flat/regular/computer-tower.svg new file mode 100644 index 0000000..a08e5fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/computer-tower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/confetti.svg b/phosphor_orig/SVGs Flat/regular/confetti.svg new file mode 100644 index 0000000..5fc2356 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/confetti.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/contactless-payment.svg b/phosphor_orig/SVGs Flat/regular/contactless-payment.svg new file mode 100644 index 0000000..6aa3215 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/contactless-payment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/control.svg b/phosphor_orig/SVGs Flat/regular/control.svg new file mode 100644 index 0000000..9f5e86c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/control.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cookie.svg b/phosphor_orig/SVGs Flat/regular/cookie.svg new file mode 100644 index 0000000..972b5fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cookie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cooking-pot.svg b/phosphor_orig/SVGs Flat/regular/cooking-pot.svg new file mode 100644 index 0000000..fb216c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cooking-pot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/copy-simple.svg b/phosphor_orig/SVGs Flat/regular/copy-simple.svg new file mode 100644 index 0000000..87778b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/copy-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/copy.svg b/phosphor_orig/SVGs Flat/regular/copy.svg new file mode 100644 index 0000000..8f3dd2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/copyleft.svg b/phosphor_orig/SVGs Flat/regular/copyleft.svg new file mode 100644 index 0000000..6d0e239 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/copyleft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/copyright.svg b/phosphor_orig/SVGs Flat/regular/copyright.svg new file mode 100644 index 0000000..8ad3e14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/copyright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/corners-in.svg b/phosphor_orig/SVGs Flat/regular/corners-in.svg new file mode 100644 index 0000000..cfc98ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/corners-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/corners-out.svg b/phosphor_orig/SVGs Flat/regular/corners-out.svg new file mode 100644 index 0000000..09ad809 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/corners-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/couch.svg b/phosphor_orig/SVGs Flat/regular/couch.svg new file mode 100644 index 0000000..c964dcd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/couch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/court-basketball.svg b/phosphor_orig/SVGs Flat/regular/court-basketball.svg new file mode 100644 index 0000000..e93a285 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/court-basketball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cow.svg b/phosphor_orig/SVGs Flat/regular/cow.svg new file mode 100644 index 0000000..d77a5b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cowboy-hat.svg b/phosphor_orig/SVGs Flat/regular/cowboy-hat.svg new file mode 100644 index 0000000..17e6b0f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cowboy-hat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cpu.svg b/phosphor_orig/SVGs Flat/regular/cpu.svg new file mode 100644 index 0000000..acf4c50 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cpu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/crane-tower.svg b/phosphor_orig/SVGs Flat/regular/crane-tower.svg new file mode 100644 index 0000000..8b8e742 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/crane-tower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/crane.svg b/phosphor_orig/SVGs Flat/regular/crane.svg new file mode 100644 index 0000000..23514d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/crane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/credit-card.svg b/phosphor_orig/SVGs Flat/regular/credit-card.svg new file mode 100644 index 0000000..da19de9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cricket.svg b/phosphor_orig/SVGs Flat/regular/cricket.svg new file mode 100644 index 0000000..6bc0224 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cricket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/crop.svg b/phosphor_orig/SVGs Flat/regular/crop.svg new file mode 100644 index 0000000..bd465b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/crop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cross.svg b/phosphor_orig/SVGs Flat/regular/cross.svg new file mode 100644 index 0000000..074eba3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cross.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/crosshair-simple.svg b/phosphor_orig/SVGs Flat/regular/crosshair-simple.svg new file mode 100644 index 0000000..1a38ede --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/crosshair-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/crosshair.svg b/phosphor_orig/SVGs Flat/regular/crosshair.svg new file mode 100644 index 0000000..29d504d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/crosshair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/crown-cross.svg b/phosphor_orig/SVGs Flat/regular/crown-cross.svg new file mode 100644 index 0000000..12839e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/crown-cross.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/crown-simple.svg b/phosphor_orig/SVGs Flat/regular/crown-simple.svg new file mode 100644 index 0000000..11f9c4f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/crown-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/crown.svg b/phosphor_orig/SVGs Flat/regular/crown.svg new file mode 100644 index 0000000..6140018 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/crown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cube-focus.svg b/phosphor_orig/SVGs Flat/regular/cube-focus.svg new file mode 100644 index 0000000..4fffda1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cube-focus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cube-transparent.svg b/phosphor_orig/SVGs Flat/regular/cube-transparent.svg new file mode 100644 index 0000000..f7b7d14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cube-transparent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cube.svg b/phosphor_orig/SVGs Flat/regular/cube.svg new file mode 100644 index 0000000..13375d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/currency-btc.svg b/phosphor_orig/SVGs Flat/regular/currency-btc.svg new file mode 100644 index 0000000..f3f60b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/currency-btc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/currency-circle-dollar.svg b/phosphor_orig/SVGs Flat/regular/currency-circle-dollar.svg new file mode 100644 index 0000000..b05e777 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/currency-circle-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/currency-cny.svg b/phosphor_orig/SVGs Flat/regular/currency-cny.svg new file mode 100644 index 0000000..13af1c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/currency-cny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/currency-dollar-simple.svg b/phosphor_orig/SVGs Flat/regular/currency-dollar-simple.svg new file mode 100644 index 0000000..011c654 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/currency-dollar-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/currency-dollar.svg b/phosphor_orig/SVGs Flat/regular/currency-dollar.svg new file mode 100644 index 0000000..271c4c6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/currency-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/currency-eth.svg b/phosphor_orig/SVGs Flat/regular/currency-eth.svg new file mode 100644 index 0000000..462365d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/currency-eth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/currency-eur.svg b/phosphor_orig/SVGs Flat/regular/currency-eur.svg new file mode 100644 index 0000000..c20e562 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/currency-eur.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/currency-gbp.svg b/phosphor_orig/SVGs Flat/regular/currency-gbp.svg new file mode 100644 index 0000000..2edb36e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/currency-gbp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/currency-inr.svg b/phosphor_orig/SVGs Flat/regular/currency-inr.svg new file mode 100644 index 0000000..152f9e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/currency-inr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/currency-jpy.svg b/phosphor_orig/SVGs Flat/regular/currency-jpy.svg new file mode 100644 index 0000000..291afee --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/currency-jpy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/currency-krw.svg b/phosphor_orig/SVGs Flat/regular/currency-krw.svg new file mode 100644 index 0000000..1509ad3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/currency-krw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/currency-kzt.svg b/phosphor_orig/SVGs Flat/regular/currency-kzt.svg new file mode 100644 index 0000000..76eb53d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/currency-kzt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/currency-ngn.svg b/phosphor_orig/SVGs Flat/regular/currency-ngn.svg new file mode 100644 index 0000000..930e6d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/currency-ngn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/currency-rub.svg b/phosphor_orig/SVGs Flat/regular/currency-rub.svg new file mode 100644 index 0000000..6380ba4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/currency-rub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cursor-click.svg b/phosphor_orig/SVGs Flat/regular/cursor-click.svg new file mode 100644 index 0000000..d1a5c45 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cursor-click.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cursor-text.svg b/phosphor_orig/SVGs Flat/regular/cursor-text.svg new file mode 100644 index 0000000..ec5a34a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cursor-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cursor.svg b/phosphor_orig/SVGs Flat/regular/cursor.svg new file mode 100644 index 0000000..6e5a220 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cursor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/cylinder.svg b/phosphor_orig/SVGs Flat/regular/cylinder.svg new file mode 100644 index 0000000..e7ddafc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/cylinder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/database.svg b/phosphor_orig/SVGs Flat/regular/database.svg new file mode 100644 index 0000000..c462393 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/database.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/desk.svg b/phosphor_orig/SVGs Flat/regular/desk.svg new file mode 100644 index 0000000..627bdc6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/desk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/desktop-tower.svg b/phosphor_orig/SVGs Flat/regular/desktop-tower.svg new file mode 100644 index 0000000..71b30ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/desktop-tower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/desktop.svg b/phosphor_orig/SVGs Flat/regular/desktop.svg new file mode 100644 index 0000000..3270758 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/desktop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/detective.svg b/phosphor_orig/SVGs Flat/regular/detective.svg new file mode 100644 index 0000000..088e421 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/detective.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dev-to-logo.svg b/phosphor_orig/SVGs Flat/regular/dev-to-logo.svg new file mode 100644 index 0000000..9f919b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dev-to-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/device-mobile-camera.svg b/phosphor_orig/SVGs Flat/regular/device-mobile-camera.svg new file mode 100644 index 0000000..ccb7b5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/device-mobile-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/device-mobile-slash.svg b/phosphor_orig/SVGs Flat/regular/device-mobile-slash.svg new file mode 100644 index 0000000..a74d594 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/device-mobile-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/device-mobile-speaker.svg b/phosphor_orig/SVGs Flat/regular/device-mobile-speaker.svg new file mode 100644 index 0000000..6bbefca --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/device-mobile-speaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/device-mobile.svg b/phosphor_orig/SVGs Flat/regular/device-mobile.svg new file mode 100644 index 0000000..e066c8b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/device-mobile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/device-rotate.svg b/phosphor_orig/SVGs Flat/regular/device-rotate.svg new file mode 100644 index 0000000..722edd3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/device-rotate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/device-tablet-camera.svg b/phosphor_orig/SVGs Flat/regular/device-tablet-camera.svg new file mode 100644 index 0000000..79c8f62 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/device-tablet-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/device-tablet-speaker.svg b/phosphor_orig/SVGs Flat/regular/device-tablet-speaker.svg new file mode 100644 index 0000000..c057ec1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/device-tablet-speaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/device-tablet.svg b/phosphor_orig/SVGs Flat/regular/device-tablet.svg new file mode 100644 index 0000000..f123258 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/device-tablet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/devices.svg b/phosphor_orig/SVGs Flat/regular/devices.svg new file mode 100644 index 0000000..184d5af --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/devices.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/diamond.svg b/phosphor_orig/SVGs Flat/regular/diamond.svg new file mode 100644 index 0000000..8c8902c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/diamond.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/diamonds-four.svg b/phosphor_orig/SVGs Flat/regular/diamonds-four.svg new file mode 100644 index 0000000..2201dfa --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/diamonds-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dice-five.svg b/phosphor_orig/SVGs Flat/regular/dice-five.svg new file mode 100644 index 0000000..5a5f3b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dice-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dice-four.svg b/phosphor_orig/SVGs Flat/regular/dice-four.svg new file mode 100644 index 0000000..634561c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dice-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dice-one.svg b/phosphor_orig/SVGs Flat/regular/dice-one.svg new file mode 100644 index 0000000..a45e108 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dice-one.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dice-six.svg b/phosphor_orig/SVGs Flat/regular/dice-six.svg new file mode 100644 index 0000000..57e009c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dice-six.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dice-three.svg b/phosphor_orig/SVGs Flat/regular/dice-three.svg new file mode 100644 index 0000000..225e5b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dice-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dice-two.svg b/phosphor_orig/SVGs Flat/regular/dice-two.svg new file mode 100644 index 0000000..ec7e7cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dice-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/disc.svg b/phosphor_orig/SVGs Flat/regular/disc.svg new file mode 100644 index 0000000..f46eb0f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/disco-ball.svg b/phosphor_orig/SVGs Flat/regular/disco-ball.svg new file mode 100644 index 0000000..bb4114e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/disco-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/discord-logo.svg b/phosphor_orig/SVGs Flat/regular/discord-logo.svg new file mode 100644 index 0000000..1d136f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/discord-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/divide.svg b/phosphor_orig/SVGs Flat/regular/divide.svg new file mode 100644 index 0000000..e42713a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/divide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dna.svg b/phosphor_orig/SVGs Flat/regular/dna.svg new file mode 100644 index 0000000..84b737c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dna.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dog.svg b/phosphor_orig/SVGs Flat/regular/dog.svg new file mode 100644 index 0000000..cdbb0cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/door-open.svg b/phosphor_orig/SVGs Flat/regular/door-open.svg new file mode 100644 index 0000000..8ea90a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/door-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/door.svg b/phosphor_orig/SVGs Flat/regular/door.svg new file mode 100644 index 0000000..209cf67 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/door.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dot-outline.svg b/phosphor_orig/SVGs Flat/regular/dot-outline.svg new file mode 100644 index 0000000..c521e7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dot-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dot.svg b/phosphor_orig/SVGs Flat/regular/dot.svg new file mode 100644 index 0000000..f4e8954 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dots-nine.svg b/phosphor_orig/SVGs Flat/regular/dots-nine.svg new file mode 100644 index 0000000..042f047 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dots-nine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dots-six-vertical.svg b/phosphor_orig/SVGs Flat/regular/dots-six-vertical.svg new file mode 100644 index 0000000..159b35b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dots-six-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dots-six.svg b/phosphor_orig/SVGs Flat/regular/dots-six.svg new file mode 100644 index 0000000..e613aba --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dots-six.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dots-three-circle-vertical.svg b/phosphor_orig/SVGs Flat/regular/dots-three-circle-vertical.svg new file mode 100644 index 0000000..1a9e522 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dots-three-circle-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dots-three-circle.svg b/phosphor_orig/SVGs Flat/regular/dots-three-circle.svg new file mode 100644 index 0000000..7c2f9e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dots-three-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dots-three-outline-vertical.svg b/phosphor_orig/SVGs Flat/regular/dots-three-outline-vertical.svg new file mode 100644 index 0000000..6a72d33 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dots-three-outline-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dots-three-outline.svg b/phosphor_orig/SVGs Flat/regular/dots-three-outline.svg new file mode 100644 index 0000000..e038d3c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dots-three-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dots-three-vertical.svg b/phosphor_orig/SVGs Flat/regular/dots-three-vertical.svg new file mode 100644 index 0000000..321aa93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dots-three-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dots-three.svg b/phosphor_orig/SVGs Flat/regular/dots-three.svg new file mode 100644 index 0000000..291944d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dots-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/download-simple.svg b/phosphor_orig/SVGs Flat/regular/download-simple.svg new file mode 100644 index 0000000..631dcde --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/download-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/download.svg b/phosphor_orig/SVGs Flat/regular/download.svg new file mode 100644 index 0000000..bcfdce9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dress.svg b/phosphor_orig/SVGs Flat/regular/dress.svg new file mode 100644 index 0000000..3e7eb89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dresser.svg b/phosphor_orig/SVGs Flat/regular/dresser.svg new file mode 100644 index 0000000..be25cc2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dresser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dribbble-logo.svg b/phosphor_orig/SVGs Flat/regular/dribbble-logo.svg new file mode 100644 index 0000000..3ed2043 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dribbble-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/drone.svg b/phosphor_orig/SVGs Flat/regular/drone.svg new file mode 100644 index 0000000..c670677 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/drone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/drop-half-bottom.svg b/phosphor_orig/SVGs Flat/regular/drop-half-bottom.svg new file mode 100644 index 0000000..6b7ec31 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/drop-half-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/drop-half.svg b/phosphor_orig/SVGs Flat/regular/drop-half.svg new file mode 100644 index 0000000..f6dba22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/drop-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/drop-simple.svg b/phosphor_orig/SVGs Flat/regular/drop-simple.svg new file mode 100644 index 0000000..45d31c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/drop-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/drop-slash.svg b/phosphor_orig/SVGs Flat/regular/drop-slash.svg new file mode 100644 index 0000000..d983f7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/drop-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/drop.svg b/phosphor_orig/SVGs Flat/regular/drop.svg new file mode 100644 index 0000000..8b2b275 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/drop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/dropbox-logo.svg b/phosphor_orig/SVGs Flat/regular/dropbox-logo.svg new file mode 100644 index 0000000..714f37f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/dropbox-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/ear-slash.svg b/phosphor_orig/SVGs Flat/regular/ear-slash.svg new file mode 100644 index 0000000..a65efff --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/ear-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/ear.svg b/phosphor_orig/SVGs Flat/regular/ear.svg new file mode 100644 index 0000000..a5060c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/ear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/egg-crack.svg b/phosphor_orig/SVGs Flat/regular/egg-crack.svg new file mode 100644 index 0000000..c27ca9b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/egg-crack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/egg.svg b/phosphor_orig/SVGs Flat/regular/egg.svg new file mode 100644 index 0000000..07d453d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/egg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/eject-simple.svg b/phosphor_orig/SVGs Flat/regular/eject-simple.svg new file mode 100644 index 0000000..1853b01 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/eject-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/eject.svg b/phosphor_orig/SVGs Flat/regular/eject.svg new file mode 100644 index 0000000..b6f93e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/eject.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/elevator.svg b/phosphor_orig/SVGs Flat/regular/elevator.svg new file mode 100644 index 0000000..66fe1e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/elevator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/empty.svg b/phosphor_orig/SVGs Flat/regular/empty.svg new file mode 100644 index 0000000..c061b96 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/engine.svg b/phosphor_orig/SVGs Flat/regular/engine.svg new file mode 100644 index 0000000..27254c2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/engine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/envelope-open.svg b/phosphor_orig/SVGs Flat/regular/envelope-open.svg new file mode 100644 index 0000000..4362cfe --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/envelope-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/envelope-simple-open.svg b/phosphor_orig/SVGs Flat/regular/envelope-simple-open.svg new file mode 100644 index 0000000..4a90685 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/envelope-simple-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/envelope-simple.svg b/phosphor_orig/SVGs Flat/regular/envelope-simple.svg new file mode 100644 index 0000000..f77d510 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/envelope-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/envelope.svg b/phosphor_orig/SVGs Flat/regular/envelope.svg new file mode 100644 index 0000000..5454a82 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/envelope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/equalizer.svg b/phosphor_orig/SVGs Flat/regular/equalizer.svg new file mode 100644 index 0000000..6968b06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/equalizer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/equals.svg b/phosphor_orig/SVGs Flat/regular/equals.svg new file mode 100644 index 0000000..691cbbb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/equals.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/eraser.svg b/phosphor_orig/SVGs Flat/regular/eraser.svg new file mode 100644 index 0000000..fe2c45a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/eraser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/escalator-down.svg b/phosphor_orig/SVGs Flat/regular/escalator-down.svg new file mode 100644 index 0000000..f90646e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/escalator-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/escalator-up.svg b/phosphor_orig/SVGs Flat/regular/escalator-up.svg new file mode 100644 index 0000000..cfa4274 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/escalator-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/exam.svg b/phosphor_orig/SVGs Flat/regular/exam.svg new file mode 100644 index 0000000..4f0d33f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/exam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/exclamation-mark.svg b/phosphor_orig/SVGs Flat/regular/exclamation-mark.svg new file mode 100644 index 0000000..29b9211 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/exclamation-mark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/exclude-square.svg b/phosphor_orig/SVGs Flat/regular/exclude-square.svg new file mode 100644 index 0000000..90d43de --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/exclude-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/exclude.svg b/phosphor_orig/SVGs Flat/regular/exclude.svg new file mode 100644 index 0000000..f5591e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/exclude.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/export.svg b/phosphor_orig/SVGs Flat/regular/export.svg new file mode 100644 index 0000000..871588b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/eye-closed.svg b/phosphor_orig/SVGs Flat/regular/eye-closed.svg new file mode 100644 index 0000000..02ce8b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/eye-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/eye-slash.svg b/phosphor_orig/SVGs Flat/regular/eye-slash.svg new file mode 100644 index 0000000..7efa1c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/eye-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/eye.svg b/phosphor_orig/SVGs Flat/regular/eye.svg new file mode 100644 index 0000000..f6f8230 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/eyedropper-sample.svg b/phosphor_orig/SVGs Flat/regular/eyedropper-sample.svg new file mode 100644 index 0000000..6ce8701 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/eyedropper-sample.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/eyedropper.svg b/phosphor_orig/SVGs Flat/regular/eyedropper.svg new file mode 100644 index 0000000..6f84dc2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/eyedropper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/eyeglasses.svg b/phosphor_orig/SVGs Flat/regular/eyeglasses.svg new file mode 100644 index 0000000..1b8b5ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/eyeglasses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/eyes.svg b/phosphor_orig/SVGs Flat/regular/eyes.svg new file mode 100644 index 0000000..c25cc53 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/eyes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/face-mask.svg b/phosphor_orig/SVGs Flat/regular/face-mask.svg new file mode 100644 index 0000000..fc1ff10 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/face-mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/facebook-logo.svg b/phosphor_orig/SVGs Flat/regular/facebook-logo.svg new file mode 100644 index 0000000..9dce04d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/facebook-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/factory.svg b/phosphor_orig/SVGs Flat/regular/factory.svg new file mode 100644 index 0000000..36b317b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/factory.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/faders-horizontal.svg b/phosphor_orig/SVGs Flat/regular/faders-horizontal.svg new file mode 100644 index 0000000..8b1291b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/faders-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/faders.svg b/phosphor_orig/SVGs Flat/regular/faders.svg new file mode 100644 index 0000000..1256590 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/faders.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/fallout-shelter.svg b/phosphor_orig/SVGs Flat/regular/fallout-shelter.svg new file mode 100644 index 0000000..bf879d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/fallout-shelter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/fan.svg b/phosphor_orig/SVGs Flat/regular/fan.svg new file mode 100644 index 0000000..6b60360 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/fan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/farm.svg b/phosphor_orig/SVGs Flat/regular/farm.svg new file mode 100644 index 0000000..2f6a99d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/farm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/fast-forward-circle.svg b/phosphor_orig/SVGs Flat/regular/fast-forward-circle.svg new file mode 100644 index 0000000..1f12fb2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/fast-forward-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/fast-forward.svg b/phosphor_orig/SVGs Flat/regular/fast-forward.svg new file mode 100644 index 0000000..1eaa2e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/fast-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/feather.svg b/phosphor_orig/SVGs Flat/regular/feather.svg new file mode 100644 index 0000000..9e4a5bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/feather.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/fediverse-logo.svg b/phosphor_orig/SVGs Flat/regular/fediverse-logo.svg new file mode 100644 index 0000000..c386dbf --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/fediverse-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/figma-logo.svg b/phosphor_orig/SVGs Flat/regular/figma-logo.svg new file mode 100644 index 0000000..19e93a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/figma-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-archive.svg b/phosphor_orig/SVGs Flat/regular/file-archive.svg new file mode 100644 index 0000000..ad9d2da --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-arrow-down.svg b/phosphor_orig/SVGs Flat/regular/file-arrow-down.svg new file mode 100644 index 0000000..ae2cf4a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-arrow-up.svg b/phosphor_orig/SVGs Flat/regular/file-arrow-up.svg new file mode 100644 index 0000000..ea1026e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-audio.svg b/phosphor_orig/SVGs Flat/regular/file-audio.svg new file mode 100644 index 0000000..b829ca8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-c-sharp.svg b/phosphor_orig/SVGs Flat/regular/file-c-sharp.svg new file mode 100644 index 0000000..d62a9d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-c-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-c.svg b/phosphor_orig/SVGs Flat/regular/file-c.svg new file mode 100644 index 0000000..242102e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-cloud.svg b/phosphor_orig/SVGs Flat/regular/file-cloud.svg new file mode 100644 index 0000000..dc08642 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-code.svg b/phosphor_orig/SVGs Flat/regular/file-code.svg new file mode 100644 index 0000000..d55f0c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-cpp.svg b/phosphor_orig/SVGs Flat/regular/file-cpp.svg new file mode 100644 index 0000000..e239f28 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-cpp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-css.svg b/phosphor_orig/SVGs Flat/regular/file-css.svg new file mode 100644 index 0000000..845c0a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-css.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-csv.svg b/phosphor_orig/SVGs Flat/regular/file-csv.svg new file mode 100644 index 0000000..e418f5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-csv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-dashed.svg b/phosphor_orig/SVGs Flat/regular/file-dashed.svg new file mode 100644 index 0000000..f193c42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-dashed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-doc.svg b/phosphor_orig/SVGs Flat/regular/file-doc.svg new file mode 100644 index 0000000..852c23f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-doc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-html.svg b/phosphor_orig/SVGs Flat/regular/file-html.svg new file mode 100644 index 0000000..2e7454d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-html.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-image.svg b/phosphor_orig/SVGs Flat/regular/file-image.svg new file mode 100644 index 0000000..112edc3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-ini.svg b/phosphor_orig/SVGs Flat/regular/file-ini.svg new file mode 100644 index 0000000..9340298 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-ini.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-jpg.svg b/phosphor_orig/SVGs Flat/regular/file-jpg.svg new file mode 100644 index 0000000..f18d4d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-jpg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-js.svg b/phosphor_orig/SVGs Flat/regular/file-js.svg new file mode 100644 index 0000000..7ceab01 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-js.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-jsx.svg b/phosphor_orig/SVGs Flat/regular/file-jsx.svg new file mode 100644 index 0000000..511272f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-jsx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-lock.svg b/phosphor_orig/SVGs Flat/regular/file-lock.svg new file mode 100644 index 0000000..65dd5aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-magnifying-glass.svg b/phosphor_orig/SVGs Flat/regular/file-magnifying-glass.svg new file mode 100644 index 0000000..f9ac687 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-magnifying-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-md.svg b/phosphor_orig/SVGs Flat/regular/file-md.svg new file mode 100644 index 0000000..483aa85 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-md.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-minus.svg b/phosphor_orig/SVGs Flat/regular/file-minus.svg new file mode 100644 index 0000000..fc92a63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-pdf.svg b/phosphor_orig/SVGs Flat/regular/file-pdf.svg new file mode 100644 index 0000000..e7940a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-pdf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-plus.svg b/phosphor_orig/SVGs Flat/regular/file-plus.svg new file mode 100644 index 0000000..8e27171 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-png.svg b/phosphor_orig/SVGs Flat/regular/file-png.svg new file mode 100644 index 0000000..38d5d6d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-png.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-ppt.svg b/phosphor_orig/SVGs Flat/regular/file-ppt.svg new file mode 100644 index 0000000..9eb650b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-ppt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-py.svg b/phosphor_orig/SVGs Flat/regular/file-py.svg new file mode 100644 index 0000000..056b70a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-py.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-rs.svg b/phosphor_orig/SVGs Flat/regular/file-rs.svg new file mode 100644 index 0000000..4ef702b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-rs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-sql.svg b/phosphor_orig/SVGs Flat/regular/file-sql.svg new file mode 100644 index 0000000..4667f83 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-sql.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-svg.svg b/phosphor_orig/SVGs Flat/regular/file-svg.svg new file mode 100644 index 0000000..6b72eeb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-svg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-text.svg b/phosphor_orig/SVGs Flat/regular/file-text.svg new file mode 100644 index 0000000..984fbb5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-ts.svg b/phosphor_orig/SVGs Flat/regular/file-ts.svg new file mode 100644 index 0000000..3561135 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-ts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-tsx.svg b/phosphor_orig/SVGs Flat/regular/file-tsx.svg new file mode 100644 index 0000000..0ca50fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-tsx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-txt.svg b/phosphor_orig/SVGs Flat/regular/file-txt.svg new file mode 100644 index 0000000..62c222b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-txt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-video.svg b/phosphor_orig/SVGs Flat/regular/file-video.svg new file mode 100644 index 0000000..f1b0eac --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-vue.svg b/phosphor_orig/SVGs Flat/regular/file-vue.svg new file mode 100644 index 0000000..b32fd73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-vue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-x.svg b/phosphor_orig/SVGs Flat/regular/file-x.svg new file mode 100644 index 0000000..5f1d9d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-xls.svg b/phosphor_orig/SVGs Flat/regular/file-xls.svg new file mode 100644 index 0000000..096b168 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-xls.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file-zip.svg b/phosphor_orig/SVGs Flat/regular/file-zip.svg new file mode 100644 index 0000000..d056e0e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file-zip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/file.svg b/phosphor_orig/SVGs Flat/regular/file.svg new file mode 100644 index 0000000..f2e7629 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/files.svg b/phosphor_orig/SVGs Flat/regular/files.svg new file mode 100644 index 0000000..be26945 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/files.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/film-reel.svg b/phosphor_orig/SVGs Flat/regular/film-reel.svg new file mode 100644 index 0000000..0373289 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/film-reel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/film-script.svg b/phosphor_orig/SVGs Flat/regular/film-script.svg new file mode 100644 index 0000000..79a2a6a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/film-script.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/film-slate.svg b/phosphor_orig/SVGs Flat/regular/film-slate.svg new file mode 100644 index 0000000..182d25e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/film-slate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/film-strip.svg b/phosphor_orig/SVGs Flat/regular/film-strip.svg new file mode 100644 index 0000000..54b7715 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/film-strip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/fingerprint-simple.svg b/phosphor_orig/SVGs Flat/regular/fingerprint-simple.svg new file mode 100644 index 0000000..605cd80 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/fingerprint-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/fingerprint.svg b/phosphor_orig/SVGs Flat/regular/fingerprint.svg new file mode 100644 index 0000000..1fcaf3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/fingerprint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/finn-the-human.svg b/phosphor_orig/SVGs Flat/regular/finn-the-human.svg new file mode 100644 index 0000000..80add43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/finn-the-human.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/fire-extinguisher.svg b/phosphor_orig/SVGs Flat/regular/fire-extinguisher.svg new file mode 100644 index 0000000..1ba2c0f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/fire-extinguisher.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/fire-simple.svg b/phosphor_orig/SVGs Flat/regular/fire-simple.svg new file mode 100644 index 0000000..39e2ca8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/fire-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/fire-truck.svg b/phosphor_orig/SVGs Flat/regular/fire-truck.svg new file mode 100644 index 0000000..e6b7692 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/fire-truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/fire.svg b/phosphor_orig/SVGs Flat/regular/fire.svg new file mode 100644 index 0000000..f18962b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/fire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/first-aid-kit.svg b/phosphor_orig/SVGs Flat/regular/first-aid-kit.svg new file mode 100644 index 0000000..c054469 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/first-aid-kit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/first-aid.svg b/phosphor_orig/SVGs Flat/regular/first-aid.svg new file mode 100644 index 0000000..7c55bc0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/first-aid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/fish-simple.svg b/phosphor_orig/SVGs Flat/regular/fish-simple.svg new file mode 100644 index 0000000..1748247 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/fish-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/fish.svg b/phosphor_orig/SVGs Flat/regular/fish.svg new file mode 100644 index 0000000..6138115 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/fish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/flag-banner-fold.svg b/phosphor_orig/SVGs Flat/regular/flag-banner-fold.svg new file mode 100644 index 0000000..e477941 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/flag-banner-fold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/flag-banner.svg b/phosphor_orig/SVGs Flat/regular/flag-banner.svg new file mode 100644 index 0000000..a51d54f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/flag-banner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/flag-checkered.svg b/phosphor_orig/SVGs Flat/regular/flag-checkered.svg new file mode 100644 index 0000000..12003f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/flag-checkered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/flag-pennant.svg b/phosphor_orig/SVGs Flat/regular/flag-pennant.svg new file mode 100644 index 0000000..642ef47 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/flag-pennant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/flag.svg b/phosphor_orig/SVGs Flat/regular/flag.svg new file mode 100644 index 0000000..fa4c65e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/flame.svg b/phosphor_orig/SVGs Flat/regular/flame.svg new file mode 100644 index 0000000..c028787 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/flame.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/flashlight.svg b/phosphor_orig/SVGs Flat/regular/flashlight.svg new file mode 100644 index 0000000..7b4c5a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/flashlight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/flask.svg b/phosphor_orig/SVGs Flat/regular/flask.svg new file mode 100644 index 0000000..bf9e254 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/flask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/flip-horizontal.svg b/phosphor_orig/SVGs Flat/regular/flip-horizontal.svg new file mode 100644 index 0000000..fd4dd23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/flip-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/flip-vertical.svg b/phosphor_orig/SVGs Flat/regular/flip-vertical.svg new file mode 100644 index 0000000..a274a8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/flip-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/floppy-disk-back.svg b/phosphor_orig/SVGs Flat/regular/floppy-disk-back.svg new file mode 100644 index 0000000..1df4e5a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/floppy-disk-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/floppy-disk.svg b/phosphor_orig/SVGs Flat/regular/floppy-disk.svg new file mode 100644 index 0000000..b57a53a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/floppy-disk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/flow-arrow.svg b/phosphor_orig/SVGs Flat/regular/flow-arrow.svg new file mode 100644 index 0000000..8731c1d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/flow-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/flower-lotus.svg b/phosphor_orig/SVGs Flat/regular/flower-lotus.svg new file mode 100644 index 0000000..e5482c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/flower-lotus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/flower-tulip.svg b/phosphor_orig/SVGs Flat/regular/flower-tulip.svg new file mode 100644 index 0000000..9e3e4b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/flower-tulip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/flower.svg b/phosphor_orig/SVGs Flat/regular/flower.svg new file mode 100644 index 0000000..607db8e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/flower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/flying-saucer.svg b/phosphor_orig/SVGs Flat/regular/flying-saucer.svg new file mode 100644 index 0000000..6f26d23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/flying-saucer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folder-dashed.svg b/phosphor_orig/SVGs Flat/regular/folder-dashed.svg new file mode 100644 index 0000000..fb2c28d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folder-dashed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folder-lock.svg b/phosphor_orig/SVGs Flat/regular/folder-lock.svg new file mode 100644 index 0000000..3e8f86c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folder-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folder-minus.svg b/phosphor_orig/SVGs Flat/regular/folder-minus.svg new file mode 100644 index 0000000..516cde7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folder-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folder-open.svg b/phosphor_orig/SVGs Flat/regular/folder-open.svg new file mode 100644 index 0000000..edacb37 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folder-plus.svg b/phosphor_orig/SVGs Flat/regular/folder-plus.svg new file mode 100644 index 0000000..3ea2fea --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folder-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folder-simple-dashed.svg b/phosphor_orig/SVGs Flat/regular/folder-simple-dashed.svg new file mode 100644 index 0000000..48542c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folder-simple-dashed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folder-simple-lock.svg b/phosphor_orig/SVGs Flat/regular/folder-simple-lock.svg new file mode 100644 index 0000000..ef4a4b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folder-simple-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folder-simple-minus.svg b/phosphor_orig/SVGs Flat/regular/folder-simple-minus.svg new file mode 100644 index 0000000..086adb5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folder-simple-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folder-simple-plus.svg b/phosphor_orig/SVGs Flat/regular/folder-simple-plus.svg new file mode 100644 index 0000000..5ff25a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folder-simple-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folder-simple-star.svg b/phosphor_orig/SVGs Flat/regular/folder-simple-star.svg new file mode 100644 index 0000000..de2ce84 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folder-simple-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folder-simple-user.svg b/phosphor_orig/SVGs Flat/regular/folder-simple-user.svg new file mode 100644 index 0000000..f1730f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folder-simple-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folder-simple.svg b/phosphor_orig/SVGs Flat/regular/folder-simple.svg new file mode 100644 index 0000000..36acab2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folder-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folder-star.svg b/phosphor_orig/SVGs Flat/regular/folder-star.svg new file mode 100644 index 0000000..9d5131f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folder-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folder-user.svg b/phosphor_orig/SVGs Flat/regular/folder-user.svg new file mode 100644 index 0000000..c37e578 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folder-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folder.svg b/phosphor_orig/SVGs Flat/regular/folder.svg new file mode 100644 index 0000000..df74375 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/folders.svg b/phosphor_orig/SVGs Flat/regular/folders.svg new file mode 100644 index 0000000..ce72acf --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/folders.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/football-helmet.svg b/phosphor_orig/SVGs Flat/regular/football-helmet.svg new file mode 100644 index 0000000..a9e3e21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/football-helmet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/football.svg b/phosphor_orig/SVGs Flat/regular/football.svg new file mode 100644 index 0000000..b9f0abe --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/footprints.svg b/phosphor_orig/SVGs Flat/regular/footprints.svg new file mode 100644 index 0000000..a4a5bec --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/footprints.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/fork-knife.svg b/phosphor_orig/SVGs Flat/regular/fork-knife.svg new file mode 100644 index 0000000..81fd596 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/fork-knife.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/four-k.svg b/phosphor_orig/SVGs Flat/regular/four-k.svg new file mode 100644 index 0000000..e5a99b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/four-k.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/frame-corners.svg b/phosphor_orig/SVGs Flat/regular/frame-corners.svg new file mode 100644 index 0000000..e61580a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/frame-corners.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/framer-logo.svg b/phosphor_orig/SVGs Flat/regular/framer-logo.svg new file mode 100644 index 0000000..6914492 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/framer-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/function.svg b/phosphor_orig/SVGs Flat/regular/function.svg new file mode 100644 index 0000000..f918e23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/function.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/funnel-simple-x.svg b/phosphor_orig/SVGs Flat/regular/funnel-simple-x.svg new file mode 100644 index 0000000..e133b80 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/funnel-simple-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/funnel-simple.svg b/phosphor_orig/SVGs Flat/regular/funnel-simple.svg new file mode 100644 index 0000000..c6e2240 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/funnel-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/funnel-x.svg b/phosphor_orig/SVGs Flat/regular/funnel-x.svg new file mode 100644 index 0000000..1c90a9b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/funnel-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/funnel.svg b/phosphor_orig/SVGs Flat/regular/funnel.svg new file mode 100644 index 0000000..fd00096 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/funnel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/game-controller.svg b/phosphor_orig/SVGs Flat/regular/game-controller.svg new file mode 100644 index 0000000..0fe3a3d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/game-controller.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/garage.svg b/phosphor_orig/SVGs Flat/regular/garage.svg new file mode 100644 index 0000000..795c270 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/garage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gas-can.svg b/phosphor_orig/SVGs Flat/regular/gas-can.svg new file mode 100644 index 0000000..ce08206 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gas-can.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gas-pump.svg b/phosphor_orig/SVGs Flat/regular/gas-pump.svg new file mode 100644 index 0000000..b3aa355 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gas-pump.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gauge.svg b/phosphor_orig/SVGs Flat/regular/gauge.svg new file mode 100644 index 0000000..a6d5129 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gauge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gavel.svg b/phosphor_orig/SVGs Flat/regular/gavel.svg new file mode 100644 index 0000000..1983f21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gavel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gear-fine.svg b/phosphor_orig/SVGs Flat/regular/gear-fine.svg new file mode 100644 index 0000000..349bb66 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gear-fine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gear-six.svg b/phosphor_orig/SVGs Flat/regular/gear-six.svg new file mode 100644 index 0000000..2f6e0ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gear-six.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gear.svg b/phosphor_orig/SVGs Flat/regular/gear.svg new file mode 100644 index 0000000..a7e5860 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gender-female.svg b/phosphor_orig/SVGs Flat/regular/gender-female.svg new file mode 100644 index 0000000..b8d67d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gender-female.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gender-intersex.svg b/phosphor_orig/SVGs Flat/regular/gender-intersex.svg new file mode 100644 index 0000000..5a9716f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gender-intersex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gender-male.svg b/phosphor_orig/SVGs Flat/regular/gender-male.svg new file mode 100644 index 0000000..3662ece --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gender-male.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gender-neuter.svg b/phosphor_orig/SVGs Flat/regular/gender-neuter.svg new file mode 100644 index 0000000..8bbb78a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gender-neuter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gender-nonbinary.svg b/phosphor_orig/SVGs Flat/regular/gender-nonbinary.svg new file mode 100644 index 0000000..fe912a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gender-nonbinary.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gender-transgender.svg b/phosphor_orig/SVGs Flat/regular/gender-transgender.svg new file mode 100644 index 0000000..88b517c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gender-transgender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/ghost.svg b/phosphor_orig/SVGs Flat/regular/ghost.svg new file mode 100644 index 0000000..8f94e1c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/ghost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gif.svg b/phosphor_orig/SVGs Flat/regular/gif.svg new file mode 100644 index 0000000..2741035 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gif.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gift.svg b/phosphor_orig/SVGs Flat/regular/gift.svg new file mode 100644 index 0000000..c2d6c2c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/git-branch.svg b/phosphor_orig/SVGs Flat/regular/git-branch.svg new file mode 100644 index 0000000..4b442e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/git-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/git-commit.svg b/phosphor_orig/SVGs Flat/regular/git-commit.svg new file mode 100644 index 0000000..d87fda1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/git-commit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/git-diff.svg b/phosphor_orig/SVGs Flat/regular/git-diff.svg new file mode 100644 index 0000000..0908d13 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/git-diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/git-fork.svg b/phosphor_orig/SVGs Flat/regular/git-fork.svg new file mode 100644 index 0000000..ca318b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/git-fork.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/git-merge.svg b/phosphor_orig/SVGs Flat/regular/git-merge.svg new file mode 100644 index 0000000..eb18623 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/git-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/git-pull-request.svg b/phosphor_orig/SVGs Flat/regular/git-pull-request.svg new file mode 100644 index 0000000..ff8d695 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/git-pull-request.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/github-logo.svg b/phosphor_orig/SVGs Flat/regular/github-logo.svg new file mode 100644 index 0000000..70f5335 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/github-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gitlab-logo-simple.svg b/phosphor_orig/SVGs Flat/regular/gitlab-logo-simple.svg new file mode 100644 index 0000000..c255834 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gitlab-logo-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gitlab-logo.svg b/phosphor_orig/SVGs Flat/regular/gitlab-logo.svg new file mode 100644 index 0000000..f0b4903 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gitlab-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/globe-hemisphere-east.svg b/phosphor_orig/SVGs Flat/regular/globe-hemisphere-east.svg new file mode 100644 index 0000000..50cb487 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/globe-hemisphere-east.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/globe-hemisphere-west.svg b/phosphor_orig/SVGs Flat/regular/globe-hemisphere-west.svg new file mode 100644 index 0000000..5f24715 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/globe-hemisphere-west.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/globe-simple-x.svg b/phosphor_orig/SVGs Flat/regular/globe-simple-x.svg new file mode 100644 index 0000000..3939587 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/globe-simple-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/globe-simple.svg b/phosphor_orig/SVGs Flat/regular/globe-simple.svg new file mode 100644 index 0000000..51697b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/globe-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/globe-stand.svg b/phosphor_orig/SVGs Flat/regular/globe-stand.svg new file mode 100644 index 0000000..61f1afd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/globe-stand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/globe-x.svg b/phosphor_orig/SVGs Flat/regular/globe-x.svg new file mode 100644 index 0000000..71b3f90 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/globe-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/globe.svg b/phosphor_orig/SVGs Flat/regular/globe.svg new file mode 100644 index 0000000..83b5ba0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/goggles.svg b/phosphor_orig/SVGs Flat/regular/goggles.svg new file mode 100644 index 0000000..7bea888 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/goggles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/golf.svg b/phosphor_orig/SVGs Flat/regular/golf.svg new file mode 100644 index 0000000..d092c40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/golf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/goodreads-logo.svg b/phosphor_orig/SVGs Flat/regular/goodreads-logo.svg new file mode 100644 index 0000000..6f36bce --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/goodreads-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/google-cardboard-logo.svg b/phosphor_orig/SVGs Flat/regular/google-cardboard-logo.svg new file mode 100644 index 0000000..a910f2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/google-cardboard-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/google-chrome-logo.svg b/phosphor_orig/SVGs Flat/regular/google-chrome-logo.svg new file mode 100644 index 0000000..cc0e8dd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/google-chrome-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/google-drive-logo.svg b/phosphor_orig/SVGs Flat/regular/google-drive-logo.svg new file mode 100644 index 0000000..dfc9f2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/google-drive-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/google-logo.svg b/phosphor_orig/SVGs Flat/regular/google-logo.svg new file mode 100644 index 0000000..0eaf43f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/google-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/google-photos-logo.svg b/phosphor_orig/SVGs Flat/regular/google-photos-logo.svg new file mode 100644 index 0000000..7a85c22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/google-photos-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/google-play-logo.svg b/phosphor_orig/SVGs Flat/regular/google-play-logo.svg new file mode 100644 index 0000000..435cbf9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/google-play-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/google-podcasts-logo.svg b/phosphor_orig/SVGs Flat/regular/google-podcasts-logo.svg new file mode 100644 index 0000000..0499c88 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/google-podcasts-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gps-fix.svg b/phosphor_orig/SVGs Flat/regular/gps-fix.svg new file mode 100644 index 0000000..853ece9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gps-fix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gps-slash.svg b/phosphor_orig/SVGs Flat/regular/gps-slash.svg new file mode 100644 index 0000000..363565e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gps-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gps.svg b/phosphor_orig/SVGs Flat/regular/gps.svg new file mode 100644 index 0000000..2100d22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/gradient.svg b/phosphor_orig/SVGs Flat/regular/gradient.svg new file mode 100644 index 0000000..533cf18 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/gradient.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/graduation-cap.svg b/phosphor_orig/SVGs Flat/regular/graduation-cap.svg new file mode 100644 index 0000000..84d9f90 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/graduation-cap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/grains-slash.svg b/phosphor_orig/SVGs Flat/regular/grains-slash.svg new file mode 100644 index 0000000..f22b638 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/grains-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/grains.svg b/phosphor_orig/SVGs Flat/regular/grains.svg new file mode 100644 index 0000000..7cbb1fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/grains.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/graph.svg b/phosphor_orig/SVGs Flat/regular/graph.svg new file mode 100644 index 0000000..350b0bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/graph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/graphics-card.svg b/phosphor_orig/SVGs Flat/regular/graphics-card.svg new file mode 100644 index 0000000..3987ff4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/graphics-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/greater-than-or-equal.svg b/phosphor_orig/SVGs Flat/regular/greater-than-or-equal.svg new file mode 100644 index 0000000..66aaf7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/greater-than-or-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/greater-than.svg b/phosphor_orig/SVGs Flat/regular/greater-than.svg new file mode 100644 index 0000000..7df1896 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/greater-than.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/grid-four.svg b/phosphor_orig/SVGs Flat/regular/grid-four.svg new file mode 100644 index 0000000..5b17814 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/grid-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/grid-nine.svg b/phosphor_orig/SVGs Flat/regular/grid-nine.svg new file mode 100644 index 0000000..0519b58 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/grid-nine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/guitar.svg b/phosphor_orig/SVGs Flat/regular/guitar.svg new file mode 100644 index 0000000..de8d284 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/guitar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hair-dryer.svg b/phosphor_orig/SVGs Flat/regular/hair-dryer.svg new file mode 100644 index 0000000..8f94047 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hair-dryer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hamburger.svg b/phosphor_orig/SVGs Flat/regular/hamburger.svg new file mode 100644 index 0000000..f73983a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hamburger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hammer.svg b/phosphor_orig/SVGs Flat/regular/hammer.svg new file mode 100644 index 0000000..bb96d63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-arrow-down.svg b/phosphor_orig/SVGs Flat/regular/hand-arrow-down.svg new file mode 100644 index 0000000..dfb655e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-arrow-up.svg b/phosphor_orig/SVGs Flat/regular/hand-arrow-up.svg new file mode 100644 index 0000000..5427d17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-coins.svg b/phosphor_orig/SVGs Flat/regular/hand-coins.svg new file mode 100644 index 0000000..ee3f3b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-coins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-deposit.svg b/phosphor_orig/SVGs Flat/regular/hand-deposit.svg new file mode 100644 index 0000000..c4b32f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-deposit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-eye.svg b/phosphor_orig/SVGs Flat/regular/hand-eye.svg new file mode 100644 index 0000000..2f1f426 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-fist.svg b/phosphor_orig/SVGs Flat/regular/hand-fist.svg new file mode 100644 index 0000000..4382660 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-fist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-grabbing.svg b/phosphor_orig/SVGs Flat/regular/hand-grabbing.svg new file mode 100644 index 0000000..e08cc21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-grabbing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-heart.svg b/phosphor_orig/SVGs Flat/regular/hand-heart.svg new file mode 100644 index 0000000..7e01715 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-palm.svg b/phosphor_orig/SVGs Flat/regular/hand-palm.svg new file mode 100644 index 0000000..c70bbf1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-palm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-peace.svg b/phosphor_orig/SVGs Flat/regular/hand-peace.svg new file mode 100644 index 0000000..c116b2a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-peace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-pointing.svg b/phosphor_orig/SVGs Flat/regular/hand-pointing.svg new file mode 100644 index 0000000..cd224f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-pointing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-soap.svg b/phosphor_orig/SVGs Flat/regular/hand-soap.svg new file mode 100644 index 0000000..b876352 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-soap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-swipe-left.svg b/phosphor_orig/SVGs Flat/regular/hand-swipe-left.svg new file mode 100644 index 0000000..34a351e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-swipe-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-swipe-right.svg b/phosphor_orig/SVGs Flat/regular/hand-swipe-right.svg new file mode 100644 index 0000000..65b8571 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-swipe-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-tap.svg b/phosphor_orig/SVGs Flat/regular/hand-tap.svg new file mode 100644 index 0000000..6b39e94 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-tap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-waving.svg b/phosphor_orig/SVGs Flat/regular/hand-waving.svg new file mode 100644 index 0000000..130a200 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-waving.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand-withdraw.svg b/phosphor_orig/SVGs Flat/regular/hand-withdraw.svg new file mode 100644 index 0000000..567bfb6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand-withdraw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hand.svg b/phosphor_orig/SVGs Flat/regular/hand.svg new file mode 100644 index 0000000..ad361bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/handbag-simple.svg b/phosphor_orig/SVGs Flat/regular/handbag-simple.svg new file mode 100644 index 0000000..1e18009 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/handbag-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/handbag.svg b/phosphor_orig/SVGs Flat/regular/handbag.svg new file mode 100644 index 0000000..68f78e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/handbag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hands-clapping.svg b/phosphor_orig/SVGs Flat/regular/hands-clapping.svg new file mode 100644 index 0000000..9de96cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hands-clapping.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hands-praying.svg b/phosphor_orig/SVGs Flat/regular/hands-praying.svg new file mode 100644 index 0000000..8255045 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hands-praying.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/handshake.svg b/phosphor_orig/SVGs Flat/regular/handshake.svg new file mode 100644 index 0000000..1809bae --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/handshake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hard-drive.svg b/phosphor_orig/SVGs Flat/regular/hard-drive.svg new file mode 100644 index 0000000..7593277 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hard-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hard-drives.svg b/phosphor_orig/SVGs Flat/regular/hard-drives.svg new file mode 100644 index 0000000..cf56552 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hard-drives.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hard-hat.svg b/phosphor_orig/SVGs Flat/regular/hard-hat.svg new file mode 100644 index 0000000..5eec839 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hard-hat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hash-straight.svg b/phosphor_orig/SVGs Flat/regular/hash-straight.svg new file mode 100644 index 0000000..863f0b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hash-straight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hash.svg b/phosphor_orig/SVGs Flat/regular/hash.svg new file mode 100644 index 0000000..4d298ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/head-circuit.svg b/phosphor_orig/SVGs Flat/regular/head-circuit.svg new file mode 100644 index 0000000..53c0d99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/head-circuit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/headlights.svg b/phosphor_orig/SVGs Flat/regular/headlights.svg new file mode 100644 index 0000000..c860c38 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/headlights.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/headphones.svg b/phosphor_orig/SVGs Flat/regular/headphones.svg new file mode 100644 index 0000000..30c148f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/headphones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/headset.svg b/phosphor_orig/SVGs Flat/regular/headset.svg new file mode 100644 index 0000000..cf4dce0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/headset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/heart-break.svg b/phosphor_orig/SVGs Flat/regular/heart-break.svg new file mode 100644 index 0000000..9b706ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/heart-break.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/heart-half.svg b/phosphor_orig/SVGs Flat/regular/heart-half.svg new file mode 100644 index 0000000..fcd7ac9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/heart-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/heart-straight-break.svg b/phosphor_orig/SVGs Flat/regular/heart-straight-break.svg new file mode 100644 index 0000000..4142541 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/heart-straight-break.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/heart-straight.svg b/phosphor_orig/SVGs Flat/regular/heart-straight.svg new file mode 100644 index 0000000..220d9ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/heart-straight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/heart.svg b/phosphor_orig/SVGs Flat/regular/heart.svg new file mode 100644 index 0000000..c7248cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/heartbeat.svg b/phosphor_orig/SVGs Flat/regular/heartbeat.svg new file mode 100644 index 0000000..9f9d212 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/heartbeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hexagon.svg b/phosphor_orig/SVGs Flat/regular/hexagon.svg new file mode 100644 index 0000000..fca385d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hexagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/high-definition.svg b/phosphor_orig/SVGs Flat/regular/high-definition.svg new file mode 100644 index 0000000..0459d6f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/high-definition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/high-heel.svg b/phosphor_orig/SVGs Flat/regular/high-heel.svg new file mode 100644 index 0000000..ab89a02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/high-heel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/highlighter-circle.svg b/phosphor_orig/SVGs Flat/regular/highlighter-circle.svg new file mode 100644 index 0000000..87399ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/highlighter-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/highlighter.svg b/phosphor_orig/SVGs Flat/regular/highlighter.svg new file mode 100644 index 0000000..afbf387 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/highlighter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hockey.svg b/phosphor_orig/SVGs Flat/regular/hockey.svg new file mode 100644 index 0000000..9129423 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hockey.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hoodie.svg b/phosphor_orig/SVGs Flat/regular/hoodie.svg new file mode 100644 index 0000000..9253be0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hoodie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/horse.svg b/phosphor_orig/SVGs Flat/regular/horse.svg new file mode 100644 index 0000000..623b58d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/horse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hospital.svg b/phosphor_orig/SVGs Flat/regular/hospital.svg new file mode 100644 index 0000000..89a610a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hourglass-high.svg b/phosphor_orig/SVGs Flat/regular/hourglass-high.svg new file mode 100644 index 0000000..7ac95b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hourglass-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hourglass-low.svg b/phosphor_orig/SVGs Flat/regular/hourglass-low.svg new file mode 100644 index 0000000..856ad26 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hourglass-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hourglass-medium.svg b/phosphor_orig/SVGs Flat/regular/hourglass-medium.svg new file mode 100644 index 0000000..650a19f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hourglass-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hourglass-simple-high.svg b/phosphor_orig/SVGs Flat/regular/hourglass-simple-high.svg new file mode 100644 index 0000000..450b899 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hourglass-simple-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hourglass-simple-low.svg b/phosphor_orig/SVGs Flat/regular/hourglass-simple-low.svg new file mode 100644 index 0000000..fb5d6a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hourglass-simple-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hourglass-simple-medium.svg b/phosphor_orig/SVGs Flat/regular/hourglass-simple-medium.svg new file mode 100644 index 0000000..cf5fca7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hourglass-simple-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hourglass-simple.svg b/phosphor_orig/SVGs Flat/regular/hourglass-simple.svg new file mode 100644 index 0000000..8f76e89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hourglass-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hourglass.svg b/phosphor_orig/SVGs Flat/regular/hourglass.svg new file mode 100644 index 0000000..9701ad3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/house-line.svg b/phosphor_orig/SVGs Flat/regular/house-line.svg new file mode 100644 index 0000000..63750a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/house-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/house-simple.svg b/phosphor_orig/SVGs Flat/regular/house-simple.svg new file mode 100644 index 0000000..4c9d2fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/house-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/house.svg b/phosphor_orig/SVGs Flat/regular/house.svg new file mode 100644 index 0000000..2e936a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/house.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/hurricane.svg b/phosphor_orig/SVGs Flat/regular/hurricane.svg new file mode 100644 index 0000000..a912126 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/hurricane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/ice-cream.svg b/phosphor_orig/SVGs Flat/regular/ice-cream.svg new file mode 100644 index 0000000..8940fb7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/ice-cream.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/identification-badge.svg b/phosphor_orig/SVGs Flat/regular/identification-badge.svg new file mode 100644 index 0000000..c2f8e4b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/identification-badge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/identification-card.svg b/phosphor_orig/SVGs Flat/regular/identification-card.svg new file mode 100644 index 0000000..8663a63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/identification-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/image-broken.svg b/phosphor_orig/SVGs Flat/regular/image-broken.svg new file mode 100644 index 0000000..da2e248 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/image-broken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/image-square.svg b/phosphor_orig/SVGs Flat/regular/image-square.svg new file mode 100644 index 0000000..540ebff --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/image-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/image.svg b/phosphor_orig/SVGs Flat/regular/image.svg new file mode 100644 index 0000000..0e3fd4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/images-square.svg b/phosphor_orig/SVGs Flat/regular/images-square.svg new file mode 100644 index 0000000..56e79f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/images-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/images.svg b/phosphor_orig/SVGs Flat/regular/images.svg new file mode 100644 index 0000000..03179c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/infinity.svg b/phosphor_orig/SVGs Flat/regular/infinity.svg new file mode 100644 index 0000000..cd601d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/infinity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/info.svg b/phosphor_orig/SVGs Flat/regular/info.svg new file mode 100644 index 0000000..96369e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/instagram-logo.svg b/phosphor_orig/SVGs Flat/regular/instagram-logo.svg new file mode 100644 index 0000000..ec7e33b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/instagram-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/intersect-square.svg b/phosphor_orig/SVGs Flat/regular/intersect-square.svg new file mode 100644 index 0000000..04ecc42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/intersect-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/intersect-three.svg b/phosphor_orig/SVGs Flat/regular/intersect-three.svg new file mode 100644 index 0000000..bad88d6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/intersect-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/intersect.svg b/phosphor_orig/SVGs Flat/regular/intersect.svg new file mode 100644 index 0000000..0093825 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/intersect.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/intersection.svg b/phosphor_orig/SVGs Flat/regular/intersection.svg new file mode 100644 index 0000000..6dc8df7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/intersection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/invoice.svg b/phosphor_orig/SVGs Flat/regular/invoice.svg new file mode 100644 index 0000000..82c4caf --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/invoice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/island.svg b/phosphor_orig/SVGs Flat/regular/island.svg new file mode 100644 index 0000000..0685413 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/island.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/jar-label.svg b/phosphor_orig/SVGs Flat/regular/jar-label.svg new file mode 100644 index 0000000..fab8c9d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/jar-label.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/jar.svg b/phosphor_orig/SVGs Flat/regular/jar.svg new file mode 100644 index 0000000..700f10e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/jar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/jeep.svg b/phosphor_orig/SVGs Flat/regular/jeep.svg new file mode 100644 index 0000000..b444508 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/jeep.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/joystick.svg b/phosphor_orig/SVGs Flat/regular/joystick.svg new file mode 100644 index 0000000..fa35d39 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/joystick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/kanban.svg b/phosphor_orig/SVGs Flat/regular/kanban.svg new file mode 100644 index 0000000..f58bb6f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/kanban.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/key-return.svg b/phosphor_orig/SVGs Flat/regular/key-return.svg new file mode 100644 index 0000000..43b2a5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/key-return.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/key.svg b/phosphor_orig/SVGs Flat/regular/key.svg new file mode 100644 index 0000000..5aaa6be --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/keyboard.svg b/phosphor_orig/SVGs Flat/regular/keyboard.svg new file mode 100644 index 0000000..89e1e61 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/keyboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/keyhole.svg b/phosphor_orig/SVGs Flat/regular/keyhole.svg new file mode 100644 index 0000000..06c4fd0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/keyhole.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/knife.svg b/phosphor_orig/SVGs Flat/regular/knife.svg new file mode 100644 index 0000000..3bfe8b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/knife.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/ladder-simple.svg b/phosphor_orig/SVGs Flat/regular/ladder-simple.svg new file mode 100644 index 0000000..be47150 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/ladder-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/ladder.svg b/phosphor_orig/SVGs Flat/regular/ladder.svg new file mode 100644 index 0000000..84d2783 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/ladder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lamp-pendant.svg b/phosphor_orig/SVGs Flat/regular/lamp-pendant.svg new file mode 100644 index 0000000..e18b997 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lamp-pendant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lamp.svg b/phosphor_orig/SVGs Flat/regular/lamp.svg new file mode 100644 index 0000000..b881f4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/laptop.svg b/phosphor_orig/SVGs Flat/regular/laptop.svg new file mode 100644 index 0000000..aa39c25 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lasso.svg b/phosphor_orig/SVGs Flat/regular/lasso.svg new file mode 100644 index 0000000..e33a0c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lasso.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lastfm-logo.svg b/phosphor_orig/SVGs Flat/regular/lastfm-logo.svg new file mode 100644 index 0000000..d6c2d01 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lastfm-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/layout.svg b/phosphor_orig/SVGs Flat/regular/layout.svg new file mode 100644 index 0000000..482aa5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/layout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/leaf.svg b/phosphor_orig/SVGs Flat/regular/leaf.svg new file mode 100644 index 0000000..6cabb22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lectern.svg b/phosphor_orig/SVGs Flat/regular/lectern.svg new file mode 100644 index 0000000..646b0da --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lectern.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lego-smiley.svg b/phosphor_orig/SVGs Flat/regular/lego-smiley.svg new file mode 100644 index 0000000..a2c61c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lego-smiley.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lego.svg b/phosphor_orig/SVGs Flat/regular/lego.svg new file mode 100644 index 0000000..bf1853e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lego.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/less-than-or-equal.svg b/phosphor_orig/SVGs Flat/regular/less-than-or-equal.svg new file mode 100644 index 0000000..7832bd3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/less-than-or-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/less-than.svg b/phosphor_orig/SVGs Flat/regular/less-than.svg new file mode 100644 index 0000000..860b7dd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/less-than.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/letter-circle-h.svg b/phosphor_orig/SVGs Flat/regular/letter-circle-h.svg new file mode 100644 index 0000000..eb7944e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/letter-circle-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/letter-circle-p.svg b/phosphor_orig/SVGs Flat/regular/letter-circle-p.svg new file mode 100644 index 0000000..0618aa1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/letter-circle-p.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/letter-circle-v.svg b/phosphor_orig/SVGs Flat/regular/letter-circle-v.svg new file mode 100644 index 0000000..ca2ae36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/letter-circle-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lifebuoy.svg b/phosphor_orig/SVGs Flat/regular/lifebuoy.svg new file mode 100644 index 0000000..44c2c47 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lifebuoy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lightbulb-filament.svg b/phosphor_orig/SVGs Flat/regular/lightbulb-filament.svg new file mode 100644 index 0000000..9e5a5d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lightbulb-filament.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lightbulb.svg b/phosphor_orig/SVGs Flat/regular/lightbulb.svg new file mode 100644 index 0000000..bc72b9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lighthouse.svg b/phosphor_orig/SVGs Flat/regular/lighthouse.svg new file mode 100644 index 0000000..64d0ac6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lighthouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lightning-a.svg b/phosphor_orig/SVGs Flat/regular/lightning-a.svg new file mode 100644 index 0000000..5f8951e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lightning-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lightning-slash.svg b/phosphor_orig/SVGs Flat/regular/lightning-slash.svg new file mode 100644 index 0000000..b123b88 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lightning-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lightning.svg b/phosphor_orig/SVGs Flat/regular/lightning.svg new file mode 100644 index 0000000..b902b04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lightning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/line-segment.svg b/phosphor_orig/SVGs Flat/regular/line-segment.svg new file mode 100644 index 0000000..6fc7841 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/line-segment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/line-segments.svg b/phosphor_orig/SVGs Flat/regular/line-segments.svg new file mode 100644 index 0000000..5126fdb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/line-segments.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/line-vertical.svg b/phosphor_orig/SVGs Flat/regular/line-vertical.svg new file mode 100644 index 0000000..113c7e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/line-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/link-break.svg b/phosphor_orig/SVGs Flat/regular/link-break.svg new file mode 100644 index 0000000..75f2b33 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/link-break.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/link-simple-break.svg b/phosphor_orig/SVGs Flat/regular/link-simple-break.svg new file mode 100644 index 0000000..fa87337 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/link-simple-break.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/link-simple-horizontal-break.svg b/phosphor_orig/SVGs Flat/regular/link-simple-horizontal-break.svg new file mode 100644 index 0000000..55fa8b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/link-simple-horizontal-break.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/link-simple-horizontal.svg b/phosphor_orig/SVGs Flat/regular/link-simple-horizontal.svg new file mode 100644 index 0000000..11a636c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/link-simple-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/link-simple.svg b/phosphor_orig/SVGs Flat/regular/link-simple.svg new file mode 100644 index 0000000..234ef7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/link-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/link.svg b/phosphor_orig/SVGs Flat/regular/link.svg new file mode 100644 index 0000000..25ffe17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/linkedin-logo.svg b/phosphor_orig/SVGs Flat/regular/linkedin-logo.svg new file mode 100644 index 0000000..e6f86e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/linkedin-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/linktree-logo.svg b/phosphor_orig/SVGs Flat/regular/linktree-logo.svg new file mode 100644 index 0000000..1a3b20c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/linktree-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/linux-logo.svg b/phosphor_orig/SVGs Flat/regular/linux-logo.svg new file mode 100644 index 0000000..5518a33 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/linux-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/list-bullets.svg b/phosphor_orig/SVGs Flat/regular/list-bullets.svg new file mode 100644 index 0000000..afc1600 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/list-bullets.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/list-checks.svg b/phosphor_orig/SVGs Flat/regular/list-checks.svg new file mode 100644 index 0000000..9d1c071 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/list-checks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/list-dashes.svg b/phosphor_orig/SVGs Flat/regular/list-dashes.svg new file mode 100644 index 0000000..af2301f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/list-dashes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/list-heart.svg b/phosphor_orig/SVGs Flat/regular/list-heart.svg new file mode 100644 index 0000000..bcf48e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/list-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/list-magnifying-glass.svg b/phosphor_orig/SVGs Flat/regular/list-magnifying-glass.svg new file mode 100644 index 0000000..797990e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/list-magnifying-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/list-numbers.svg b/phosphor_orig/SVGs Flat/regular/list-numbers.svg new file mode 100644 index 0000000..2497987 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/list-numbers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/list-plus.svg b/phosphor_orig/SVGs Flat/regular/list-plus.svg new file mode 100644 index 0000000..29da253 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/list-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/list-star.svg b/phosphor_orig/SVGs Flat/regular/list-star.svg new file mode 100644 index 0000000..5b3128c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/list-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/list.svg b/phosphor_orig/SVGs Flat/regular/list.svg new file mode 100644 index 0000000..88254fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lock-key-open.svg b/phosphor_orig/SVGs Flat/regular/lock-key-open.svg new file mode 100644 index 0000000..9ce8a7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lock-key-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lock-key.svg b/phosphor_orig/SVGs Flat/regular/lock-key.svg new file mode 100644 index 0000000..02ce716 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lock-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lock-laminated-open.svg b/phosphor_orig/SVGs Flat/regular/lock-laminated-open.svg new file mode 100644 index 0000000..fb0ebad --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lock-laminated-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lock-laminated.svg b/phosphor_orig/SVGs Flat/regular/lock-laminated.svg new file mode 100644 index 0000000..6b1d781 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lock-laminated.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lock-open.svg b/phosphor_orig/SVGs Flat/regular/lock-open.svg new file mode 100644 index 0000000..97bbc03 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lock-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lock-simple-open.svg b/phosphor_orig/SVGs Flat/regular/lock-simple-open.svg new file mode 100644 index 0000000..85a1209 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lock-simple-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lock-simple.svg b/phosphor_orig/SVGs Flat/regular/lock-simple.svg new file mode 100644 index 0000000..ae560e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lock-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lock.svg b/phosphor_orig/SVGs Flat/regular/lock.svg new file mode 100644 index 0000000..07201fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/lockers.svg b/phosphor_orig/SVGs Flat/regular/lockers.svg new file mode 100644 index 0000000..5329f5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/lockers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/log.svg b/phosphor_orig/SVGs Flat/regular/log.svg new file mode 100644 index 0000000..2b55c75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/log.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/magic-wand.svg b/phosphor_orig/SVGs Flat/regular/magic-wand.svg new file mode 100644 index 0000000..d0af8a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/magic-wand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/magnet-straight.svg b/phosphor_orig/SVGs Flat/regular/magnet-straight.svg new file mode 100644 index 0000000..718a33b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/magnet-straight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/magnet.svg b/phosphor_orig/SVGs Flat/regular/magnet.svg new file mode 100644 index 0000000..b3af598 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/magnet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/magnifying-glass-minus.svg b/phosphor_orig/SVGs Flat/regular/magnifying-glass-minus.svg new file mode 100644 index 0000000..780fb35 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/magnifying-glass-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/magnifying-glass-plus.svg b/phosphor_orig/SVGs Flat/regular/magnifying-glass-plus.svg new file mode 100644 index 0000000..73f0bd5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/magnifying-glass-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/magnifying-glass.svg b/phosphor_orig/SVGs Flat/regular/magnifying-glass.svg new file mode 100644 index 0000000..2bdda58 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/magnifying-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/mailbox.svg b/phosphor_orig/SVGs Flat/regular/mailbox.svg new file mode 100644 index 0000000..04a1268 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/mailbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/map-pin-area.svg b/phosphor_orig/SVGs Flat/regular/map-pin-area.svg new file mode 100644 index 0000000..15955d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/map-pin-area.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/map-pin-line.svg b/phosphor_orig/SVGs Flat/regular/map-pin-line.svg new file mode 100644 index 0000000..c41be3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/map-pin-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/map-pin-plus.svg b/phosphor_orig/SVGs Flat/regular/map-pin-plus.svg new file mode 100644 index 0000000..ad7c805 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/map-pin-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/map-pin-simple-area.svg b/phosphor_orig/SVGs Flat/regular/map-pin-simple-area.svg new file mode 100644 index 0000000..3689b88 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/map-pin-simple-area.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/map-pin-simple-line.svg b/phosphor_orig/SVGs Flat/regular/map-pin-simple-line.svg new file mode 100644 index 0000000..aa199ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/map-pin-simple-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/map-pin-simple.svg b/phosphor_orig/SVGs Flat/regular/map-pin-simple.svg new file mode 100644 index 0000000..4bc5156 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/map-pin-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/map-pin.svg b/phosphor_orig/SVGs Flat/regular/map-pin.svg new file mode 100644 index 0000000..b269d42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/map-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/map-trifold.svg b/phosphor_orig/SVGs Flat/regular/map-trifold.svg new file mode 100644 index 0000000..74afa51 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/map-trifold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/markdown-logo.svg b/phosphor_orig/SVGs Flat/regular/markdown-logo.svg new file mode 100644 index 0000000..0773254 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/markdown-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/marker-circle.svg b/phosphor_orig/SVGs Flat/regular/marker-circle.svg new file mode 100644 index 0000000..c7e44a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/marker-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/martini.svg b/phosphor_orig/SVGs Flat/regular/martini.svg new file mode 100644 index 0000000..f84f458 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/martini.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/mask-happy.svg b/phosphor_orig/SVGs Flat/regular/mask-happy.svg new file mode 100644 index 0000000..4045bda --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/mask-happy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/mask-sad.svg b/phosphor_orig/SVGs Flat/regular/mask-sad.svg new file mode 100644 index 0000000..d26dcff --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/mask-sad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/mastodon-logo.svg b/phosphor_orig/SVGs Flat/regular/mastodon-logo.svg new file mode 100644 index 0000000..1408cfa --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/mastodon-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/math-operations.svg b/phosphor_orig/SVGs Flat/regular/math-operations.svg new file mode 100644 index 0000000..ad6264d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/math-operations.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/matrix-logo.svg b/phosphor_orig/SVGs Flat/regular/matrix-logo.svg new file mode 100644 index 0000000..cdd7b85 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/matrix-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/medal-military.svg b/phosphor_orig/SVGs Flat/regular/medal-military.svg new file mode 100644 index 0000000..8f91ffd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/medal-military.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/medal.svg b/phosphor_orig/SVGs Flat/regular/medal.svg new file mode 100644 index 0000000..580fdbd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/medal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/medium-logo.svg b/phosphor_orig/SVGs Flat/regular/medium-logo.svg new file mode 100644 index 0000000..8a990b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/medium-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/megaphone-simple.svg b/phosphor_orig/SVGs Flat/regular/megaphone-simple.svg new file mode 100644 index 0000000..f2b20c2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/megaphone-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/megaphone.svg b/phosphor_orig/SVGs Flat/regular/megaphone.svg new file mode 100644 index 0000000..4219dc8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/megaphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/member-of.svg b/phosphor_orig/SVGs Flat/regular/member-of.svg new file mode 100644 index 0000000..b8668a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/member-of.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/memory.svg b/phosphor_orig/SVGs Flat/regular/memory.svg new file mode 100644 index 0000000..aac8a8d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/memory.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/messenger-logo.svg b/phosphor_orig/SVGs Flat/regular/messenger-logo.svg new file mode 100644 index 0000000..eb5cc72 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/messenger-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/meta-logo.svg b/phosphor_orig/SVGs Flat/regular/meta-logo.svg new file mode 100644 index 0000000..7d5ecf6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/meta-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/meteor.svg b/phosphor_orig/SVGs Flat/regular/meteor.svg new file mode 100644 index 0000000..b1785ce --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/meteor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/metronome.svg b/phosphor_orig/SVGs Flat/regular/metronome.svg new file mode 100644 index 0000000..dd74275 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/metronome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/microphone-slash.svg b/phosphor_orig/SVGs Flat/regular/microphone-slash.svg new file mode 100644 index 0000000..8d5ad4b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/microphone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/microphone-stage.svg b/phosphor_orig/SVGs Flat/regular/microphone-stage.svg new file mode 100644 index 0000000..c29d75d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/microphone-stage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/microphone.svg b/phosphor_orig/SVGs Flat/regular/microphone.svg new file mode 100644 index 0000000..8af9d89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/microphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/microscope.svg b/phosphor_orig/SVGs Flat/regular/microscope.svg new file mode 100644 index 0000000..3c1ce0e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/microscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/microsoft-excel-logo.svg b/phosphor_orig/SVGs Flat/regular/microsoft-excel-logo.svg new file mode 100644 index 0000000..84cfa5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/microsoft-excel-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/microsoft-outlook-logo.svg b/phosphor_orig/SVGs Flat/regular/microsoft-outlook-logo.svg new file mode 100644 index 0000000..1ff5327 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/microsoft-outlook-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/microsoft-powerpoint-logo.svg b/phosphor_orig/SVGs Flat/regular/microsoft-powerpoint-logo.svg new file mode 100644 index 0000000..f0eeb0f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/microsoft-powerpoint-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/microsoft-teams-logo.svg b/phosphor_orig/SVGs Flat/regular/microsoft-teams-logo.svg new file mode 100644 index 0000000..aef904a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/microsoft-teams-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/microsoft-word-logo.svg b/phosphor_orig/SVGs Flat/regular/microsoft-word-logo.svg new file mode 100644 index 0000000..3fe0b5b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/microsoft-word-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/minus-circle.svg b/phosphor_orig/SVGs Flat/regular/minus-circle.svg new file mode 100644 index 0000000..1b85909 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/minus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/minus-square.svg b/phosphor_orig/SVGs Flat/regular/minus-square.svg new file mode 100644 index 0000000..1a25ce5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/minus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/minus.svg b/phosphor_orig/SVGs Flat/regular/minus.svg new file mode 100644 index 0000000..f9b0763 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/money-wavy.svg b/phosphor_orig/SVGs Flat/regular/money-wavy.svg new file mode 100644 index 0000000..46117ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/money-wavy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/money.svg b/phosphor_orig/SVGs Flat/regular/money.svg new file mode 100644 index 0000000..8e33f05 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/money.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/monitor-arrow-up.svg b/phosphor_orig/SVGs Flat/regular/monitor-arrow-up.svg new file mode 100644 index 0000000..0f32072 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/monitor-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/monitor-play.svg b/phosphor_orig/SVGs Flat/regular/monitor-play.svg new file mode 100644 index 0000000..4a87868 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/monitor-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/monitor.svg b/phosphor_orig/SVGs Flat/regular/monitor.svg new file mode 100644 index 0000000..e5d6d00 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/monitor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/moon-stars.svg b/phosphor_orig/SVGs Flat/regular/moon-stars.svg new file mode 100644 index 0000000..505c112 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/moon-stars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/moon.svg b/phosphor_orig/SVGs Flat/regular/moon.svg new file mode 100644 index 0000000..20fca63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/moped-front.svg b/phosphor_orig/SVGs Flat/regular/moped-front.svg new file mode 100644 index 0000000..537c384 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/moped-front.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/moped.svg b/phosphor_orig/SVGs Flat/regular/moped.svg new file mode 100644 index 0000000..86e075d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/moped.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/mosque.svg b/phosphor_orig/SVGs Flat/regular/mosque.svg new file mode 100644 index 0000000..04a9b1f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/mosque.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/motorcycle.svg b/phosphor_orig/SVGs Flat/regular/motorcycle.svg new file mode 100644 index 0000000..b25782b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/motorcycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/mountains.svg b/phosphor_orig/SVGs Flat/regular/mountains.svg new file mode 100644 index 0000000..281f2a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/mountains.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/mouse-left-click.svg b/phosphor_orig/SVGs Flat/regular/mouse-left-click.svg new file mode 100644 index 0000000..e844cc7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/mouse-left-click.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/mouse-middle-click.svg b/phosphor_orig/SVGs Flat/regular/mouse-middle-click.svg new file mode 100644 index 0000000..6f85f90 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/mouse-middle-click.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/mouse-right-click.svg b/phosphor_orig/SVGs Flat/regular/mouse-right-click.svg new file mode 100644 index 0000000..cf88875 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/mouse-right-click.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/mouse-scroll.svg b/phosphor_orig/SVGs Flat/regular/mouse-scroll.svg new file mode 100644 index 0000000..7ad623a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/mouse-scroll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/mouse-simple.svg b/phosphor_orig/SVGs Flat/regular/mouse-simple.svg new file mode 100644 index 0000000..ef932de --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/mouse-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/mouse.svg b/phosphor_orig/SVGs Flat/regular/mouse.svg new file mode 100644 index 0000000..d46bb4b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/mouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/music-note-simple.svg b/phosphor_orig/SVGs Flat/regular/music-note-simple.svg new file mode 100644 index 0000000..a877864 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/music-note-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/music-note.svg b/phosphor_orig/SVGs Flat/regular/music-note.svg new file mode 100644 index 0000000..5639858 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/music-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/music-notes-minus.svg b/phosphor_orig/SVGs Flat/regular/music-notes-minus.svg new file mode 100644 index 0000000..e86cd5a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/music-notes-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/music-notes-plus.svg b/phosphor_orig/SVGs Flat/regular/music-notes-plus.svg new file mode 100644 index 0000000..1a2c1e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/music-notes-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/music-notes-simple.svg b/phosphor_orig/SVGs Flat/regular/music-notes-simple.svg new file mode 100644 index 0000000..fc6e41d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/music-notes-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/music-notes.svg b/phosphor_orig/SVGs Flat/regular/music-notes.svg new file mode 100644 index 0000000..af2764a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/music-notes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/navigation-arrow.svg b/phosphor_orig/SVGs Flat/regular/navigation-arrow.svg new file mode 100644 index 0000000..86699a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/navigation-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/needle.svg b/phosphor_orig/SVGs Flat/regular/needle.svg new file mode 100644 index 0000000..72cea4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/needle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/network-slash.svg b/phosphor_orig/SVGs Flat/regular/network-slash.svg new file mode 100644 index 0000000..74ec0fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/network-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/network-x.svg b/phosphor_orig/SVGs Flat/regular/network-x.svg new file mode 100644 index 0000000..17d749b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/network-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/network.svg b/phosphor_orig/SVGs Flat/regular/network.svg new file mode 100644 index 0000000..0509c35 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/newspaper-clipping.svg b/phosphor_orig/SVGs Flat/regular/newspaper-clipping.svg new file mode 100644 index 0000000..be6122f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/newspaper-clipping.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/newspaper.svg b/phosphor_orig/SVGs Flat/regular/newspaper.svg new file mode 100644 index 0000000..79ac8b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/not-equals.svg b/phosphor_orig/SVGs Flat/regular/not-equals.svg new file mode 100644 index 0000000..f801e15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/not-equals.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/not-member-of.svg b/phosphor_orig/SVGs Flat/regular/not-member-of.svg new file mode 100644 index 0000000..27ba30f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/not-member-of.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/not-subset-of.svg b/phosphor_orig/SVGs Flat/regular/not-subset-of.svg new file mode 100644 index 0000000..7b6c345 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/not-subset-of.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/not-superset-of.svg b/phosphor_orig/SVGs Flat/regular/not-superset-of.svg new file mode 100644 index 0000000..1986db2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/not-superset-of.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/notches.svg b/phosphor_orig/SVGs Flat/regular/notches.svg new file mode 100644 index 0000000..5ddb534 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/notches.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/note-blank.svg b/phosphor_orig/SVGs Flat/regular/note-blank.svg new file mode 100644 index 0000000..bbbe41b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/note-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/note-pencil.svg b/phosphor_orig/SVGs Flat/regular/note-pencil.svg new file mode 100644 index 0000000..b82052d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/note-pencil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/note.svg b/phosphor_orig/SVGs Flat/regular/note.svg new file mode 100644 index 0000000..7e5a243 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/notebook.svg b/phosphor_orig/SVGs Flat/regular/notebook.svg new file mode 100644 index 0000000..25d7287 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/notebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/notepad.svg b/phosphor_orig/SVGs Flat/regular/notepad.svg new file mode 100644 index 0000000..f78b11e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/notepad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/notification.svg b/phosphor_orig/SVGs Flat/regular/notification.svg new file mode 100644 index 0000000..877e3a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/notification.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/notion-logo.svg b/phosphor_orig/SVGs Flat/regular/notion-logo.svg new file mode 100644 index 0000000..c6a51be --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/notion-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/nuclear-plant.svg b/phosphor_orig/SVGs Flat/regular/nuclear-plant.svg new file mode 100644 index 0000000..8ed6d2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/nuclear-plant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-circle-eight.svg b/phosphor_orig/SVGs Flat/regular/number-circle-eight.svg new file mode 100644 index 0000000..f392716 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-circle-eight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-circle-five.svg b/phosphor_orig/SVGs Flat/regular/number-circle-five.svg new file mode 100644 index 0000000..cfa2c3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-circle-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-circle-four.svg b/phosphor_orig/SVGs Flat/regular/number-circle-four.svg new file mode 100644 index 0000000..f055cb5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-circle-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-circle-nine.svg b/phosphor_orig/SVGs Flat/regular/number-circle-nine.svg new file mode 100644 index 0000000..34b7f64 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-circle-nine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-circle-one.svg b/phosphor_orig/SVGs Flat/regular/number-circle-one.svg new file mode 100644 index 0000000..ff966cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-circle-one.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-circle-seven.svg b/phosphor_orig/SVGs Flat/regular/number-circle-seven.svg new file mode 100644 index 0000000..4f6308a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-circle-seven.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-circle-six.svg b/phosphor_orig/SVGs Flat/regular/number-circle-six.svg new file mode 100644 index 0000000..e35bd62 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-circle-six.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-circle-three.svg b/phosphor_orig/SVGs Flat/regular/number-circle-three.svg new file mode 100644 index 0000000..7b2c36d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-circle-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-circle-two.svg b/phosphor_orig/SVGs Flat/regular/number-circle-two.svg new file mode 100644 index 0000000..8aaf35d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-circle-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-circle-zero.svg b/phosphor_orig/SVGs Flat/regular/number-circle-zero.svg new file mode 100644 index 0000000..f221b17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-circle-zero.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-eight.svg b/phosphor_orig/SVGs Flat/regular/number-eight.svg new file mode 100644 index 0000000..e6be1f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-eight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-five.svg b/phosphor_orig/SVGs Flat/regular/number-five.svg new file mode 100644 index 0000000..097a8fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-four.svg b/phosphor_orig/SVGs Flat/regular/number-four.svg new file mode 100644 index 0000000..7f1fe64 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-nine.svg b/phosphor_orig/SVGs Flat/regular/number-nine.svg new file mode 100644 index 0000000..9f65eef --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-nine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-one.svg b/phosphor_orig/SVGs Flat/regular/number-one.svg new file mode 100644 index 0000000..efea4ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-one.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-seven.svg b/phosphor_orig/SVGs Flat/regular/number-seven.svg new file mode 100644 index 0000000..a07f805 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-seven.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-six.svg b/phosphor_orig/SVGs Flat/regular/number-six.svg new file mode 100644 index 0000000..3369071 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-six.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-square-eight.svg b/phosphor_orig/SVGs Flat/regular/number-square-eight.svg new file mode 100644 index 0000000..b519fe3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-square-eight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-square-five.svg b/phosphor_orig/SVGs Flat/regular/number-square-five.svg new file mode 100644 index 0000000..16216f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-square-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-square-four.svg b/phosphor_orig/SVGs Flat/regular/number-square-four.svg new file mode 100644 index 0000000..28e96f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-square-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-square-nine.svg b/phosphor_orig/SVGs Flat/regular/number-square-nine.svg new file mode 100644 index 0000000..29ea33d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-square-nine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-square-one.svg b/phosphor_orig/SVGs Flat/regular/number-square-one.svg new file mode 100644 index 0000000..8eff0d0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-square-one.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-square-seven.svg b/phosphor_orig/SVGs Flat/regular/number-square-seven.svg new file mode 100644 index 0000000..33b7a84 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-square-seven.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-square-six.svg b/phosphor_orig/SVGs Flat/regular/number-square-six.svg new file mode 100644 index 0000000..e8147cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-square-six.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-square-three.svg b/phosphor_orig/SVGs Flat/regular/number-square-three.svg new file mode 100644 index 0000000..df11ea0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-square-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-square-two.svg b/phosphor_orig/SVGs Flat/regular/number-square-two.svg new file mode 100644 index 0000000..feb32e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-square-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-square-zero.svg b/phosphor_orig/SVGs Flat/regular/number-square-zero.svg new file mode 100644 index 0000000..98454f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-square-zero.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-three.svg b/phosphor_orig/SVGs Flat/regular/number-three.svg new file mode 100644 index 0000000..6be520b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-two.svg b/phosphor_orig/SVGs Flat/regular/number-two.svg new file mode 100644 index 0000000..387fdf3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/number-zero.svg b/phosphor_orig/SVGs Flat/regular/number-zero.svg new file mode 100644 index 0000000..1dabb30 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/number-zero.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/numpad.svg b/phosphor_orig/SVGs Flat/regular/numpad.svg new file mode 100644 index 0000000..7b7111f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/numpad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/nut.svg b/phosphor_orig/SVGs Flat/regular/nut.svg new file mode 100644 index 0000000..3b94765 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/nut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/ny-times-logo.svg b/phosphor_orig/SVGs Flat/regular/ny-times-logo.svg new file mode 100644 index 0000000..d49cadd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/ny-times-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/octagon.svg b/phosphor_orig/SVGs Flat/regular/octagon.svg new file mode 100644 index 0000000..5113321 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/office-chair.svg b/phosphor_orig/SVGs Flat/regular/office-chair.svg new file mode 100644 index 0000000..5fc9ba4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/office-chair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/onigiri.svg b/phosphor_orig/SVGs Flat/regular/onigiri.svg new file mode 100644 index 0000000..05bace5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/onigiri.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/open-ai-logo.svg b/phosphor_orig/SVGs Flat/regular/open-ai-logo.svg new file mode 100644 index 0000000..bd8147c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/open-ai-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/option.svg b/phosphor_orig/SVGs Flat/regular/option.svg new file mode 100644 index 0000000..de1349c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/option.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/orange-slice.svg b/phosphor_orig/SVGs Flat/regular/orange-slice.svg new file mode 100644 index 0000000..a4d0f9b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/orange-slice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/orange.svg b/phosphor_orig/SVGs Flat/regular/orange.svg new file mode 100644 index 0000000..25a1691 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/orange.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/oven.svg b/phosphor_orig/SVGs Flat/regular/oven.svg new file mode 100644 index 0000000..29674df --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/oven.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/package.svg b/phosphor_orig/SVGs Flat/regular/package.svg new file mode 100644 index 0000000..e5859ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/package.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/paint-brush-broad.svg b/phosphor_orig/SVGs Flat/regular/paint-brush-broad.svg new file mode 100644 index 0000000..caa66e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/paint-brush-broad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/paint-brush-household.svg b/phosphor_orig/SVGs Flat/regular/paint-brush-household.svg new file mode 100644 index 0000000..a839dbd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/paint-brush-household.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/paint-brush.svg b/phosphor_orig/SVGs Flat/regular/paint-brush.svg new file mode 100644 index 0000000..6745c71 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/paint-brush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/paint-bucket.svg b/phosphor_orig/SVGs Flat/regular/paint-bucket.svg new file mode 100644 index 0000000..6f324eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/paint-bucket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/paint-roller.svg b/phosphor_orig/SVGs Flat/regular/paint-roller.svg new file mode 100644 index 0000000..7213aad --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/paint-roller.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/palette.svg b/phosphor_orig/SVGs Flat/regular/palette.svg new file mode 100644 index 0000000..5ae77da --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/panorama.svg b/phosphor_orig/SVGs Flat/regular/panorama.svg new file mode 100644 index 0000000..2ed8b09 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/panorama.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pants.svg b/phosphor_orig/SVGs Flat/regular/pants.svg new file mode 100644 index 0000000..3e1643a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pants.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/paper-plane-right.svg b/phosphor_orig/SVGs Flat/regular/paper-plane-right.svg new file mode 100644 index 0000000..2710de6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/paper-plane-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/paper-plane-tilt.svg b/phosphor_orig/SVGs Flat/regular/paper-plane-tilt.svg new file mode 100644 index 0000000..9ed1562 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/paper-plane-tilt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/paper-plane.svg b/phosphor_orig/SVGs Flat/regular/paper-plane.svg new file mode 100644 index 0000000..40d7d82 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/paper-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/paperclip-horizontal.svg b/phosphor_orig/SVGs Flat/regular/paperclip-horizontal.svg new file mode 100644 index 0000000..dd033de --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/paperclip-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/paperclip.svg b/phosphor_orig/SVGs Flat/regular/paperclip.svg new file mode 100644 index 0000000..a4f7668 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/parachute.svg b/phosphor_orig/SVGs Flat/regular/parachute.svg new file mode 100644 index 0000000..2787155 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/parachute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/paragraph.svg b/phosphor_orig/SVGs Flat/regular/paragraph.svg new file mode 100644 index 0000000..56c5c56 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/paragraph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/parallelogram.svg b/phosphor_orig/SVGs Flat/regular/parallelogram.svg new file mode 100644 index 0000000..9c101dd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/parallelogram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/park.svg b/phosphor_orig/SVGs Flat/regular/park.svg new file mode 100644 index 0000000..f490ec1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/park.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/password.svg b/phosphor_orig/SVGs Flat/regular/password.svg new file mode 100644 index 0000000..a854838 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/password.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/path.svg b/phosphor_orig/SVGs Flat/regular/path.svg new file mode 100644 index 0000000..f2464cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/path.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/patreon-logo.svg b/phosphor_orig/SVGs Flat/regular/patreon-logo.svg new file mode 100644 index 0000000..75e304d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/patreon-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pause-circle.svg b/phosphor_orig/SVGs Flat/regular/pause-circle.svg new file mode 100644 index 0000000..702af2c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pause-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pause.svg b/phosphor_orig/SVGs Flat/regular/pause.svg new file mode 100644 index 0000000..587cde6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/paw-print.svg b/phosphor_orig/SVGs Flat/regular/paw-print.svg new file mode 100644 index 0000000..ec1c152 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/paw-print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/paypal-logo.svg b/phosphor_orig/SVGs Flat/regular/paypal-logo.svg new file mode 100644 index 0000000..3897118 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/paypal-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/peace.svg b/phosphor_orig/SVGs Flat/regular/peace.svg new file mode 100644 index 0000000..91af51c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/peace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pen-nib-straight.svg b/phosphor_orig/SVGs Flat/regular/pen-nib-straight.svg new file mode 100644 index 0000000..34e5ed2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pen-nib-straight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pen-nib.svg b/phosphor_orig/SVGs Flat/regular/pen-nib.svg new file mode 100644 index 0000000..2aadeec --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pen-nib.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pen.svg b/phosphor_orig/SVGs Flat/regular/pen.svg new file mode 100644 index 0000000..08af65a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pencil-circle.svg b/phosphor_orig/SVGs Flat/regular/pencil-circle.svg new file mode 100644 index 0000000..7287374 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pencil-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pencil-line.svg b/phosphor_orig/SVGs Flat/regular/pencil-line.svg new file mode 100644 index 0000000..2e258aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pencil-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pencil-ruler.svg b/phosphor_orig/SVGs Flat/regular/pencil-ruler.svg new file mode 100644 index 0000000..4a76089 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pencil-ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pencil-simple-line.svg b/phosphor_orig/SVGs Flat/regular/pencil-simple-line.svg new file mode 100644 index 0000000..04a4050 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pencil-simple-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pencil-simple-slash.svg b/phosphor_orig/SVGs Flat/regular/pencil-simple-slash.svg new file mode 100644 index 0000000..636d88b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pencil-simple-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pencil-simple.svg b/phosphor_orig/SVGs Flat/regular/pencil-simple.svg new file mode 100644 index 0000000..2641b0c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pencil-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pencil-slash.svg b/phosphor_orig/SVGs Flat/regular/pencil-slash.svg new file mode 100644 index 0000000..2b5045a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pencil-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pencil.svg b/phosphor_orig/SVGs Flat/regular/pencil.svg new file mode 100644 index 0000000..d1e1170 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pencil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pentagon.svg b/phosphor_orig/SVGs Flat/regular/pentagon.svg new file mode 100644 index 0000000..dc04662 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pentagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pentagram.svg b/phosphor_orig/SVGs Flat/regular/pentagram.svg new file mode 100644 index 0000000..1a8a379 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pentagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pepper.svg b/phosphor_orig/SVGs Flat/regular/pepper.svg new file mode 100644 index 0000000..7d6a95a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pepper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/percent.svg b/phosphor_orig/SVGs Flat/regular/percent.svg new file mode 100644 index 0000000..2b19f4a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/person-arms-spread.svg b/phosphor_orig/SVGs Flat/regular/person-arms-spread.svg new file mode 100644 index 0000000..e74313d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/person-arms-spread.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/person-simple-bike.svg b/phosphor_orig/SVGs Flat/regular/person-simple-bike.svg new file mode 100644 index 0000000..3de4f47 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/person-simple-bike.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/person-simple-circle.svg b/phosphor_orig/SVGs Flat/regular/person-simple-circle.svg new file mode 100644 index 0000000..71896ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/person-simple-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/person-simple-hike.svg b/phosphor_orig/SVGs Flat/regular/person-simple-hike.svg new file mode 100644 index 0000000..ddd5251 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/person-simple-hike.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/person-simple-run.svg b/phosphor_orig/SVGs Flat/regular/person-simple-run.svg new file mode 100644 index 0000000..848c2df --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/person-simple-run.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/person-simple-ski.svg b/phosphor_orig/SVGs Flat/regular/person-simple-ski.svg new file mode 100644 index 0000000..5b89312 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/person-simple-ski.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/person-simple-snowboard.svg b/phosphor_orig/SVGs Flat/regular/person-simple-snowboard.svg new file mode 100644 index 0000000..edd2b4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/person-simple-snowboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/person-simple-swim.svg b/phosphor_orig/SVGs Flat/regular/person-simple-swim.svg new file mode 100644 index 0000000..0b034a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/person-simple-swim.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/person-simple-tai-chi.svg b/phosphor_orig/SVGs Flat/regular/person-simple-tai-chi.svg new file mode 100644 index 0000000..799d654 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/person-simple-tai-chi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/person-simple-throw.svg b/phosphor_orig/SVGs Flat/regular/person-simple-throw.svg new file mode 100644 index 0000000..c2d23b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/person-simple-throw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/person-simple-walk.svg b/phosphor_orig/SVGs Flat/regular/person-simple-walk.svg new file mode 100644 index 0000000..72fb249 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/person-simple-walk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/person-simple.svg b/phosphor_orig/SVGs Flat/regular/person-simple.svg new file mode 100644 index 0000000..5cddd25 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/person-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/person.svg b/phosphor_orig/SVGs Flat/regular/person.svg new file mode 100644 index 0000000..4368bc7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/person.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/perspective.svg b/phosphor_orig/SVGs Flat/regular/perspective.svg new file mode 100644 index 0000000..1593864 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/perspective.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/phone-call.svg b/phosphor_orig/SVGs Flat/regular/phone-call.svg new file mode 100644 index 0000000..b604dc4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/phone-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/phone-disconnect.svg b/phosphor_orig/SVGs Flat/regular/phone-disconnect.svg new file mode 100644 index 0000000..639a3f0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/phone-disconnect.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/phone-incoming.svg b/phosphor_orig/SVGs Flat/regular/phone-incoming.svg new file mode 100644 index 0000000..10e7054 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/phone-incoming.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/phone-list.svg b/phosphor_orig/SVGs Flat/regular/phone-list.svg new file mode 100644 index 0000000..875a8f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/phone-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/phone-outgoing.svg b/phosphor_orig/SVGs Flat/regular/phone-outgoing.svg new file mode 100644 index 0000000..c73bee3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/phone-outgoing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/phone-pause.svg b/phosphor_orig/SVGs Flat/regular/phone-pause.svg new file mode 100644 index 0000000..eb7d9fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/phone-pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/phone-plus.svg b/phosphor_orig/SVGs Flat/regular/phone-plus.svg new file mode 100644 index 0000000..b17daa2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/phone-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/phone-slash.svg b/phosphor_orig/SVGs Flat/regular/phone-slash.svg new file mode 100644 index 0000000..15dc5a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/phone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/phone-transfer.svg b/phosphor_orig/SVGs Flat/regular/phone-transfer.svg new file mode 100644 index 0000000..9668d14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/phone-transfer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/phone-x.svg b/phosphor_orig/SVGs Flat/regular/phone-x.svg new file mode 100644 index 0000000..f140457 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/phone-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/phone.svg b/phosphor_orig/SVGs Flat/regular/phone.svg new file mode 100644 index 0000000..dcd761b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/phosphor-logo.svg b/phosphor_orig/SVGs Flat/regular/phosphor-logo.svg new file mode 100644 index 0000000..6e8bf5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/phosphor-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pi.svg b/phosphor_orig/SVGs Flat/regular/pi.svg new file mode 100644 index 0000000..57f4e91 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/piano-keys.svg b/phosphor_orig/SVGs Flat/regular/piano-keys.svg new file mode 100644 index 0000000..ef6b13c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/piano-keys.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/picnic-table.svg b/phosphor_orig/SVGs Flat/regular/picnic-table.svg new file mode 100644 index 0000000..da7dce1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/picnic-table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/picture-in-picture.svg b/phosphor_orig/SVGs Flat/regular/picture-in-picture.svg new file mode 100644 index 0000000..9631413 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/picture-in-picture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/piggy-bank.svg b/phosphor_orig/SVGs Flat/regular/piggy-bank.svg new file mode 100644 index 0000000..ea0c045 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/piggy-bank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pill.svg b/phosphor_orig/SVGs Flat/regular/pill.svg new file mode 100644 index 0000000..c01a68b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/ping-pong.svg b/phosphor_orig/SVGs Flat/regular/ping-pong.svg new file mode 100644 index 0000000..8f5852a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/ping-pong.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pint-glass.svg b/phosphor_orig/SVGs Flat/regular/pint-glass.svg new file mode 100644 index 0000000..088dd08 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pint-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pinterest-logo.svg b/phosphor_orig/SVGs Flat/regular/pinterest-logo.svg new file mode 100644 index 0000000..2d0526e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pinterest-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pinwheel.svg b/phosphor_orig/SVGs Flat/regular/pinwheel.svg new file mode 100644 index 0000000..b6f61df --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pinwheel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pipe-wrench.svg b/phosphor_orig/SVGs Flat/regular/pipe-wrench.svg new file mode 100644 index 0000000..242ac19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pipe-wrench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pipe.svg b/phosphor_orig/SVGs Flat/regular/pipe.svg new file mode 100644 index 0000000..2df0610 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pipe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pix-logo.svg b/phosphor_orig/SVGs Flat/regular/pix-logo.svg new file mode 100644 index 0000000..26a6391 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pix-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pizza.svg b/phosphor_orig/SVGs Flat/regular/pizza.svg new file mode 100644 index 0000000..25eab5a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pizza.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/placeholder.svg b/phosphor_orig/SVGs Flat/regular/placeholder.svg new file mode 100644 index 0000000..8b97a52 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/placeholder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/planet.svg b/phosphor_orig/SVGs Flat/regular/planet.svg new file mode 100644 index 0000000..d0752b0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/planet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/plant.svg b/phosphor_orig/SVGs Flat/regular/plant.svg new file mode 100644 index 0000000..5e5e1c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/plant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/play-circle.svg b/phosphor_orig/SVGs Flat/regular/play-circle.svg new file mode 100644 index 0000000..410980a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/play-pause.svg b/phosphor_orig/SVGs Flat/regular/play-pause.svg new file mode 100644 index 0000000..97765e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/play-pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/play.svg b/phosphor_orig/SVGs Flat/regular/play.svg new file mode 100644 index 0000000..162db54 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/playlist.svg b/phosphor_orig/SVGs Flat/regular/playlist.svg new file mode 100644 index 0000000..c7ad747 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/playlist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/plug-charging.svg b/phosphor_orig/SVGs Flat/regular/plug-charging.svg new file mode 100644 index 0000000..16c3cc4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/plug-charging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/plug.svg b/phosphor_orig/SVGs Flat/regular/plug.svg new file mode 100644 index 0000000..4c8c03e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/plug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/plugs-connected.svg b/phosphor_orig/SVGs Flat/regular/plugs-connected.svg new file mode 100644 index 0000000..6bf5899 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/plugs-connected.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/plugs.svg b/phosphor_orig/SVGs Flat/regular/plugs.svg new file mode 100644 index 0000000..87a2f18 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/plugs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/plus-circle.svg b/phosphor_orig/SVGs Flat/regular/plus-circle.svg new file mode 100644 index 0000000..c6294e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/plus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/plus-minus.svg b/phosphor_orig/SVGs Flat/regular/plus-minus.svg new file mode 100644 index 0000000..072c12e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/plus-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/plus-square.svg b/phosphor_orig/SVGs Flat/regular/plus-square.svg new file mode 100644 index 0000000..47112c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/plus.svg b/phosphor_orig/SVGs Flat/regular/plus.svg new file mode 100644 index 0000000..25ad5e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/poker-chip.svg b/phosphor_orig/SVGs Flat/regular/poker-chip.svg new file mode 100644 index 0000000..d009b7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/poker-chip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/police-car.svg b/phosphor_orig/SVGs Flat/regular/police-car.svg new file mode 100644 index 0000000..8cad641 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/police-car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/polygon.svg b/phosphor_orig/SVGs Flat/regular/polygon.svg new file mode 100644 index 0000000..5f49505 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/polygon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/popcorn.svg b/phosphor_orig/SVGs Flat/regular/popcorn.svg new file mode 100644 index 0000000..d2711f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/popcorn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/popsicle.svg b/phosphor_orig/SVGs Flat/regular/popsicle.svg new file mode 100644 index 0000000..9f9ca6f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/popsicle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/potted-plant.svg b/phosphor_orig/SVGs Flat/regular/potted-plant.svg new file mode 100644 index 0000000..2577c53 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/potted-plant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/power.svg b/phosphor_orig/SVGs Flat/regular/power.svg new file mode 100644 index 0000000..1f7964c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/power.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/prescription.svg b/phosphor_orig/SVGs Flat/regular/prescription.svg new file mode 100644 index 0000000..4d70e3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/prescription.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/presentation-chart.svg b/phosphor_orig/SVGs Flat/regular/presentation-chart.svg new file mode 100644 index 0000000..37f9a6c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/presentation-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/presentation.svg b/phosphor_orig/SVGs Flat/regular/presentation.svg new file mode 100644 index 0000000..68d4aa6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/presentation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/printer.svg b/phosphor_orig/SVGs Flat/regular/printer.svg new file mode 100644 index 0000000..9045e07 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/printer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/prohibit-inset.svg b/phosphor_orig/SVGs Flat/regular/prohibit-inset.svg new file mode 100644 index 0000000..296f471 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/prohibit-inset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/prohibit.svg b/phosphor_orig/SVGs Flat/regular/prohibit.svg new file mode 100644 index 0000000..eb8d2e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/prohibit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/projector-screen-chart.svg b/phosphor_orig/SVGs Flat/regular/projector-screen-chart.svg new file mode 100644 index 0000000..c52bcb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/projector-screen-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/projector-screen.svg b/phosphor_orig/SVGs Flat/regular/projector-screen.svg new file mode 100644 index 0000000..6e51efc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/projector-screen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/pulse.svg b/phosphor_orig/SVGs Flat/regular/pulse.svg new file mode 100644 index 0000000..f78d5f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/pulse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/push-pin-simple-slash.svg b/phosphor_orig/SVGs Flat/regular/push-pin-simple-slash.svg new file mode 100644 index 0000000..281d70d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/push-pin-simple-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/push-pin-simple.svg b/phosphor_orig/SVGs Flat/regular/push-pin-simple.svg new file mode 100644 index 0000000..51d3867 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/push-pin-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/push-pin-slash.svg b/phosphor_orig/SVGs Flat/regular/push-pin-slash.svg new file mode 100644 index 0000000..15f1389 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/push-pin-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/push-pin.svg b/phosphor_orig/SVGs Flat/regular/push-pin.svg new file mode 100644 index 0000000..26dd7b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/push-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/puzzle-piece.svg b/phosphor_orig/SVGs Flat/regular/puzzle-piece.svg new file mode 100644 index 0000000..a024088 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/puzzle-piece.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/qr-code.svg b/phosphor_orig/SVGs Flat/regular/qr-code.svg new file mode 100644 index 0000000..d79b4dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/qr-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/question-mark.svg b/phosphor_orig/SVGs Flat/regular/question-mark.svg new file mode 100644 index 0000000..7b4dafd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/question-mark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/question.svg b/phosphor_orig/SVGs Flat/regular/question.svg new file mode 100644 index 0000000..754d22d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/queue.svg b/phosphor_orig/SVGs Flat/regular/queue.svg new file mode 100644 index 0000000..91a0103 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/queue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/quotes.svg b/phosphor_orig/SVGs Flat/regular/quotes.svg new file mode 100644 index 0000000..93dcb16 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/quotes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/rabbit.svg b/phosphor_orig/SVGs Flat/regular/rabbit.svg new file mode 100644 index 0000000..ab984d6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/rabbit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/racquet.svg b/phosphor_orig/SVGs Flat/regular/racquet.svg new file mode 100644 index 0000000..1e31b7b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/racquet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/radical.svg b/phosphor_orig/SVGs Flat/regular/radical.svg new file mode 100644 index 0000000..fc2f039 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/radical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/radio-button.svg b/phosphor_orig/SVGs Flat/regular/radio-button.svg new file mode 100644 index 0000000..e3f021d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/radio-button.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/radio.svg b/phosphor_orig/SVGs Flat/regular/radio.svg new file mode 100644 index 0000000..4414215 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/radio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/radioactive.svg b/phosphor_orig/SVGs Flat/regular/radioactive.svg new file mode 100644 index 0000000..3e72c71 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/radioactive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/rainbow-cloud.svg b/phosphor_orig/SVGs Flat/regular/rainbow-cloud.svg new file mode 100644 index 0000000..2f7cc11 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/rainbow-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/rainbow.svg b/phosphor_orig/SVGs Flat/regular/rainbow.svg new file mode 100644 index 0000000..913366b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/rainbow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/ranking.svg b/phosphor_orig/SVGs Flat/regular/ranking.svg new file mode 100644 index 0000000..72fd709 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/ranking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/read-cv-logo.svg b/phosphor_orig/SVGs Flat/regular/read-cv-logo.svg new file mode 100644 index 0000000..ac10950 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/read-cv-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/receipt-x.svg b/phosphor_orig/SVGs Flat/regular/receipt-x.svg new file mode 100644 index 0000000..cdcc9e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/receipt-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/receipt.svg b/phosphor_orig/SVGs Flat/regular/receipt.svg new file mode 100644 index 0000000..0cfcdf0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/receipt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/record.svg b/phosphor_orig/SVGs Flat/regular/record.svg new file mode 100644 index 0000000..4cee32f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/record.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/rectangle-dashed.svg b/phosphor_orig/SVGs Flat/regular/rectangle-dashed.svg new file mode 100644 index 0000000..717a092 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/rectangle-dashed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/rectangle.svg b/phosphor_orig/SVGs Flat/regular/rectangle.svg new file mode 100644 index 0000000..2660e0b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/rectangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/recycle.svg b/phosphor_orig/SVGs Flat/regular/recycle.svg new file mode 100644 index 0000000..26b342b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/recycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/reddit-logo.svg b/phosphor_orig/SVGs Flat/regular/reddit-logo.svg new file mode 100644 index 0000000..753abc4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/reddit-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/repeat-once.svg b/phosphor_orig/SVGs Flat/regular/repeat-once.svg new file mode 100644 index 0000000..c8bf66a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/repeat-once.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/repeat.svg b/phosphor_orig/SVGs Flat/regular/repeat.svg new file mode 100644 index 0000000..d9ae0db --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/replit-logo.svg b/phosphor_orig/SVGs Flat/regular/replit-logo.svg new file mode 100644 index 0000000..adce8b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/replit-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/resize.svg b/phosphor_orig/SVGs Flat/regular/resize.svg new file mode 100644 index 0000000..9013b2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/resize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/rewind-circle.svg b/phosphor_orig/SVGs Flat/regular/rewind-circle.svg new file mode 100644 index 0000000..827c415 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/rewind-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/rewind.svg b/phosphor_orig/SVGs Flat/regular/rewind.svg new file mode 100644 index 0000000..bad2176 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/rewind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/road-horizon.svg b/phosphor_orig/SVGs Flat/regular/road-horizon.svg new file mode 100644 index 0000000..95b5118 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/road-horizon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/robot.svg b/phosphor_orig/SVGs Flat/regular/robot.svg new file mode 100644 index 0000000..5a55ac9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/robot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/rocket-launch.svg b/phosphor_orig/SVGs Flat/regular/rocket-launch.svg new file mode 100644 index 0000000..46fced0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/rocket-launch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/rocket.svg b/phosphor_orig/SVGs Flat/regular/rocket.svg new file mode 100644 index 0000000..a56fab3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/rows-plus-bottom.svg b/phosphor_orig/SVGs Flat/regular/rows-plus-bottom.svg new file mode 100644 index 0000000..9bb452a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/rows-plus-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/rows-plus-top.svg b/phosphor_orig/SVGs Flat/regular/rows-plus-top.svg new file mode 100644 index 0000000..6b96cf0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/rows-plus-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/rows.svg b/phosphor_orig/SVGs Flat/regular/rows.svg new file mode 100644 index 0000000..63556c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/rows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/rss-simple.svg b/phosphor_orig/SVGs Flat/regular/rss-simple.svg new file mode 100644 index 0000000..b82a564 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/rss-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/rss.svg b/phosphor_orig/SVGs Flat/regular/rss.svg new file mode 100644 index 0000000..5c70e81 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/rug.svg b/phosphor_orig/SVGs Flat/regular/rug.svg new file mode 100644 index 0000000..6caa5e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/rug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/ruler.svg b/phosphor_orig/SVGs Flat/regular/ruler.svg new file mode 100644 index 0000000..839a58c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sailboat.svg b/phosphor_orig/SVGs Flat/regular/sailboat.svg new file mode 100644 index 0000000..44819f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sailboat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/scales.svg b/phosphor_orig/SVGs Flat/regular/scales.svg new file mode 100644 index 0000000..21aa502 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/scales.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/scan-smiley.svg b/phosphor_orig/SVGs Flat/regular/scan-smiley.svg new file mode 100644 index 0000000..0c6a9ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/scan-smiley.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/scan.svg b/phosphor_orig/SVGs Flat/regular/scan.svg new file mode 100644 index 0000000..a91850f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/scan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/scissors.svg b/phosphor_orig/SVGs Flat/regular/scissors.svg new file mode 100644 index 0000000..9800e6c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/scissors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/scooter.svg b/phosphor_orig/SVGs Flat/regular/scooter.svg new file mode 100644 index 0000000..74b8159 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/scooter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/screencast.svg b/phosphor_orig/SVGs Flat/regular/screencast.svg new file mode 100644 index 0000000..c21a837 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/screencast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/screwdriver.svg b/phosphor_orig/SVGs Flat/regular/screwdriver.svg new file mode 100644 index 0000000..f0aa5d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/screwdriver.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/scribble-loop.svg b/phosphor_orig/SVGs Flat/regular/scribble-loop.svg new file mode 100644 index 0000000..8bb5745 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/scribble-loop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/scribble.svg b/phosphor_orig/SVGs Flat/regular/scribble.svg new file mode 100644 index 0000000..9e25916 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/scribble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/scroll.svg b/phosphor_orig/SVGs Flat/regular/scroll.svg new file mode 100644 index 0000000..9d1b59e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/scroll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/seal-check.svg b/phosphor_orig/SVGs Flat/regular/seal-check.svg new file mode 100644 index 0000000..c1fa940 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/seal-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/seal-percent.svg b/phosphor_orig/SVGs Flat/regular/seal-percent.svg new file mode 100644 index 0000000..342676a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/seal-percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/seal-question.svg b/phosphor_orig/SVGs Flat/regular/seal-question.svg new file mode 100644 index 0000000..8a4b2ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/seal-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/seal-warning.svg b/phosphor_orig/SVGs Flat/regular/seal-warning.svg new file mode 100644 index 0000000..8b4dd68 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/seal-warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/seal.svg b/phosphor_orig/SVGs Flat/regular/seal.svg new file mode 100644 index 0000000..a47185c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/seal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/seat.svg b/phosphor_orig/SVGs Flat/regular/seat.svg new file mode 100644 index 0000000..cd2aa26 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/seat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/seatbelt.svg b/phosphor_orig/SVGs Flat/regular/seatbelt.svg new file mode 100644 index 0000000..04bd6f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/seatbelt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/security-camera.svg b/phosphor_orig/SVGs Flat/regular/security-camera.svg new file mode 100644 index 0000000..b3cd118 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/security-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/selection-all.svg b/phosphor_orig/SVGs Flat/regular/selection-all.svg new file mode 100644 index 0000000..def9a7b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/selection-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/selection-background.svg b/phosphor_orig/SVGs Flat/regular/selection-background.svg new file mode 100644 index 0000000..6cae848 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/selection-background.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/selection-foreground.svg b/phosphor_orig/SVGs Flat/regular/selection-foreground.svg new file mode 100644 index 0000000..dcbc2d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/selection-foreground.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/selection-inverse.svg b/phosphor_orig/SVGs Flat/regular/selection-inverse.svg new file mode 100644 index 0000000..1df5a63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/selection-inverse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/selection-plus.svg b/phosphor_orig/SVGs Flat/regular/selection-plus.svg new file mode 100644 index 0000000..8b5e644 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/selection-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/selection-slash.svg b/phosphor_orig/SVGs Flat/regular/selection-slash.svg new file mode 100644 index 0000000..a3a1738 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/selection-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/selection.svg b/phosphor_orig/SVGs Flat/regular/selection.svg new file mode 100644 index 0000000..de15212 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/selection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shapes.svg b/phosphor_orig/SVGs Flat/regular/shapes.svg new file mode 100644 index 0000000..4fd1ac7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shapes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/share-fat.svg b/phosphor_orig/SVGs Flat/regular/share-fat.svg new file mode 100644 index 0000000..0916c2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/share-fat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/share-network.svg b/phosphor_orig/SVGs Flat/regular/share-network.svg new file mode 100644 index 0000000..dac2123 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/share-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/share.svg b/phosphor_orig/SVGs Flat/regular/share.svg new file mode 100644 index 0000000..1cdcfff --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shield-check.svg b/phosphor_orig/SVGs Flat/regular/shield-check.svg new file mode 100644 index 0000000..956b165 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shield-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shield-checkered.svg b/phosphor_orig/SVGs Flat/regular/shield-checkered.svg new file mode 100644 index 0000000..8a9b4d0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shield-checkered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shield-chevron.svg b/phosphor_orig/SVGs Flat/regular/shield-chevron.svg new file mode 100644 index 0000000..6f083ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shield-chevron.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shield-plus.svg b/phosphor_orig/SVGs Flat/regular/shield-plus.svg new file mode 100644 index 0000000..c8ead31 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shield-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shield-slash.svg b/phosphor_orig/SVGs Flat/regular/shield-slash.svg new file mode 100644 index 0000000..ca9940c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shield-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shield-star.svg b/phosphor_orig/SVGs Flat/regular/shield-star.svg new file mode 100644 index 0000000..bb28fe4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shield-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shield-warning.svg b/phosphor_orig/SVGs Flat/regular/shield-warning.svg new file mode 100644 index 0000000..893e0b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shield-warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shield.svg b/phosphor_orig/SVGs Flat/regular/shield.svg new file mode 100644 index 0000000..473d0d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shipping-container.svg b/phosphor_orig/SVGs Flat/regular/shipping-container.svg new file mode 100644 index 0000000..82bec39 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shipping-container.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shirt-folded.svg b/phosphor_orig/SVGs Flat/regular/shirt-folded.svg new file mode 100644 index 0000000..d7c67ce --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shirt-folded.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shooting-star.svg b/phosphor_orig/SVGs Flat/regular/shooting-star.svg new file mode 100644 index 0000000..6dc63d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shooting-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shopping-bag-open.svg b/phosphor_orig/SVGs Flat/regular/shopping-bag-open.svg new file mode 100644 index 0000000..7043851 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shopping-bag-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shopping-bag.svg b/phosphor_orig/SVGs Flat/regular/shopping-bag.svg new file mode 100644 index 0000000..b85280d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shopping-bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shopping-cart-simple.svg b/phosphor_orig/SVGs Flat/regular/shopping-cart-simple.svg new file mode 100644 index 0000000..179e335 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shopping-cart-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shopping-cart.svg b/phosphor_orig/SVGs Flat/regular/shopping-cart.svg new file mode 100644 index 0000000..f734827 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shopping-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shovel.svg b/phosphor_orig/SVGs Flat/regular/shovel.svg new file mode 100644 index 0000000..e59593a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shovel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shower.svg b/phosphor_orig/SVGs Flat/regular/shower.svg new file mode 100644 index 0000000..ff190d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shrimp.svg b/phosphor_orig/SVGs Flat/regular/shrimp.svg new file mode 100644 index 0000000..53fd93a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shrimp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shuffle-angular.svg b/phosphor_orig/SVGs Flat/regular/shuffle-angular.svg new file mode 100644 index 0000000..809bf43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shuffle-angular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shuffle-simple.svg b/phosphor_orig/SVGs Flat/regular/shuffle-simple.svg new file mode 100644 index 0000000..76f2253 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shuffle-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/shuffle.svg b/phosphor_orig/SVGs Flat/regular/shuffle.svg new file mode 100644 index 0000000..5e28341 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/shuffle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sidebar-simple.svg b/phosphor_orig/SVGs Flat/regular/sidebar-simple.svg new file mode 100644 index 0000000..0abec37 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sidebar-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sidebar.svg b/phosphor_orig/SVGs Flat/regular/sidebar.svg new file mode 100644 index 0000000..c3974a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sidebar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sigma.svg b/phosphor_orig/SVGs Flat/regular/sigma.svg new file mode 100644 index 0000000..3baee47 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sigma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sign-in.svg b/phosphor_orig/SVGs Flat/regular/sign-in.svg new file mode 100644 index 0000000..bc5065f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sign-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sign-out.svg b/phosphor_orig/SVGs Flat/regular/sign-out.svg new file mode 100644 index 0000000..9890a7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sign-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/signature.svg b/phosphor_orig/SVGs Flat/regular/signature.svg new file mode 100644 index 0000000..3300b18 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/signature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/signpost.svg b/phosphor_orig/SVGs Flat/regular/signpost.svg new file mode 100644 index 0000000..3513b4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/signpost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sim-card.svg b/phosphor_orig/SVGs Flat/regular/sim-card.svg new file mode 100644 index 0000000..8810c00 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sim-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/siren.svg b/phosphor_orig/SVGs Flat/regular/siren.svg new file mode 100644 index 0000000..4e83fb5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/siren.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sketch-logo.svg b/phosphor_orig/SVGs Flat/regular/sketch-logo.svg new file mode 100644 index 0000000..a6349f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sketch-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/skip-back-circle.svg b/phosphor_orig/SVGs Flat/regular/skip-back-circle.svg new file mode 100644 index 0000000..db929d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/skip-back-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/skip-back.svg b/phosphor_orig/SVGs Flat/regular/skip-back.svg new file mode 100644 index 0000000..bd08633 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/skip-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/skip-forward-circle.svg b/phosphor_orig/SVGs Flat/regular/skip-forward-circle.svg new file mode 100644 index 0000000..77406b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/skip-forward-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/skip-forward.svg b/phosphor_orig/SVGs Flat/regular/skip-forward.svg new file mode 100644 index 0000000..5715e6c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/skip-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/skull.svg b/phosphor_orig/SVGs Flat/regular/skull.svg new file mode 100644 index 0000000..341f1ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/skull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/skype-logo.svg b/phosphor_orig/SVGs Flat/regular/skype-logo.svg new file mode 100644 index 0000000..91c235a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/skype-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/slack-logo.svg b/phosphor_orig/SVGs Flat/regular/slack-logo.svg new file mode 100644 index 0000000..1a9791d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/slack-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sliders-horizontal.svg b/phosphor_orig/SVGs Flat/regular/sliders-horizontal.svg new file mode 100644 index 0000000..4aa2aa3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sliders-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sliders.svg b/phosphor_orig/SVGs Flat/regular/sliders.svg new file mode 100644 index 0000000..492433e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sliders.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/slideshow.svg b/phosphor_orig/SVGs Flat/regular/slideshow.svg new file mode 100644 index 0000000..8857015 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/slideshow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/smiley-angry.svg b/phosphor_orig/SVGs Flat/regular/smiley-angry.svg new file mode 100644 index 0000000..b69fafc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/smiley-angry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/smiley-blank.svg b/phosphor_orig/SVGs Flat/regular/smiley-blank.svg new file mode 100644 index 0000000..e03f358 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/smiley-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/smiley-meh.svg b/phosphor_orig/SVGs Flat/regular/smiley-meh.svg new file mode 100644 index 0000000..fc23386 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/smiley-meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/smiley-melting.svg b/phosphor_orig/SVGs Flat/regular/smiley-melting.svg new file mode 100644 index 0000000..bc3938d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/smiley-melting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/smiley-nervous.svg b/phosphor_orig/SVGs Flat/regular/smiley-nervous.svg new file mode 100644 index 0000000..6054052 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/smiley-nervous.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/smiley-sad.svg b/phosphor_orig/SVGs Flat/regular/smiley-sad.svg new file mode 100644 index 0000000..c6a1a7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/smiley-sad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/smiley-sticker.svg b/phosphor_orig/SVGs Flat/regular/smiley-sticker.svg new file mode 100644 index 0000000..0529dae --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/smiley-sticker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/smiley-wink.svg b/phosphor_orig/SVGs Flat/regular/smiley-wink.svg new file mode 100644 index 0000000..32aa92d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/smiley-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/smiley-x-eyes.svg b/phosphor_orig/SVGs Flat/regular/smiley-x-eyes.svg new file mode 100644 index 0000000..ac625f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/smiley-x-eyes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/smiley.svg b/phosphor_orig/SVGs Flat/regular/smiley.svg new file mode 100644 index 0000000..42b5070 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/smiley.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/snapchat-logo.svg b/phosphor_orig/SVGs Flat/regular/snapchat-logo.svg new file mode 100644 index 0000000..48a819e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/snapchat-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sneaker-move.svg b/phosphor_orig/SVGs Flat/regular/sneaker-move.svg new file mode 100644 index 0000000..69177e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sneaker-move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sneaker.svg b/phosphor_orig/SVGs Flat/regular/sneaker.svg new file mode 100644 index 0000000..72eb6f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sneaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/snowflake.svg b/phosphor_orig/SVGs Flat/regular/snowflake.svg new file mode 100644 index 0000000..d8c1c95 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/snowflake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/soccer-ball.svg b/phosphor_orig/SVGs Flat/regular/soccer-ball.svg new file mode 100644 index 0000000..da89dc1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/soccer-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sock.svg b/phosphor_orig/SVGs Flat/regular/sock.svg new file mode 100644 index 0000000..f6f5343 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/solar-panel.svg b/phosphor_orig/SVGs Flat/regular/solar-panel.svg new file mode 100644 index 0000000..2bb6e64 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/solar-panel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/solar-roof.svg b/phosphor_orig/SVGs Flat/regular/solar-roof.svg new file mode 100644 index 0000000..c47fc15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/solar-roof.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sort-ascending.svg b/phosphor_orig/SVGs Flat/regular/sort-ascending.svg new file mode 100644 index 0000000..6ba80ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sort-ascending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sort-descending.svg b/phosphor_orig/SVGs Flat/regular/sort-descending.svg new file mode 100644 index 0000000..e14a9ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sort-descending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/soundcloud-logo.svg b/phosphor_orig/SVGs Flat/regular/soundcloud-logo.svg new file mode 100644 index 0000000..0f0b9c2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/soundcloud-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/spade.svg b/phosphor_orig/SVGs Flat/regular/spade.svg new file mode 100644 index 0000000..2d41969 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/spade.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sparkle.svg b/phosphor_orig/SVGs Flat/regular/sparkle.svg new file mode 100644 index 0000000..f64e8d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sparkle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/speaker-hifi.svg b/phosphor_orig/SVGs Flat/regular/speaker-hifi.svg new file mode 100644 index 0000000..17d1f45 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/speaker-hifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/speaker-high.svg b/phosphor_orig/SVGs Flat/regular/speaker-high.svg new file mode 100644 index 0000000..2c9885b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/speaker-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/speaker-low.svg b/phosphor_orig/SVGs Flat/regular/speaker-low.svg new file mode 100644 index 0000000..d9ba411 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/speaker-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/speaker-none.svg b/phosphor_orig/SVGs Flat/regular/speaker-none.svg new file mode 100644 index 0000000..359df7e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/speaker-none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/speaker-simple-high.svg b/phosphor_orig/SVGs Flat/regular/speaker-simple-high.svg new file mode 100644 index 0000000..6b34f56 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/speaker-simple-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/speaker-simple-low.svg b/phosphor_orig/SVGs Flat/regular/speaker-simple-low.svg new file mode 100644 index 0000000..afac4ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/speaker-simple-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/speaker-simple-none.svg b/phosphor_orig/SVGs Flat/regular/speaker-simple-none.svg new file mode 100644 index 0000000..4c65e7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/speaker-simple-none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/speaker-simple-slash.svg b/phosphor_orig/SVGs Flat/regular/speaker-simple-slash.svg new file mode 100644 index 0000000..042e1a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/speaker-simple-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/speaker-simple-x.svg b/phosphor_orig/SVGs Flat/regular/speaker-simple-x.svg new file mode 100644 index 0000000..1c939ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/speaker-simple-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/speaker-slash.svg b/phosphor_orig/SVGs Flat/regular/speaker-slash.svg new file mode 100644 index 0000000..ddb9bfd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/speaker-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/speaker-x.svg b/phosphor_orig/SVGs Flat/regular/speaker-x.svg new file mode 100644 index 0000000..fb6fcd4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/speaker-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/speedometer.svg b/phosphor_orig/SVGs Flat/regular/speedometer.svg new file mode 100644 index 0000000..d95bb85 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/speedometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sphere.svg b/phosphor_orig/SVGs Flat/regular/sphere.svg new file mode 100644 index 0000000..a984275 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sphere.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/spinner-ball.svg b/phosphor_orig/SVGs Flat/regular/spinner-ball.svg new file mode 100644 index 0000000..52f5c8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/spinner-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/spinner-gap.svg b/phosphor_orig/SVGs Flat/regular/spinner-gap.svg new file mode 100644 index 0000000..4409ca2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/spinner-gap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/spinner.svg b/phosphor_orig/SVGs Flat/regular/spinner.svg new file mode 100644 index 0000000..3a2f236 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/spinner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/spiral.svg b/phosphor_orig/SVGs Flat/regular/spiral.svg new file mode 100644 index 0000000..f7f0eec --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/spiral.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/split-horizontal.svg b/phosphor_orig/SVGs Flat/regular/split-horizontal.svg new file mode 100644 index 0000000..e2812a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/split-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/split-vertical.svg b/phosphor_orig/SVGs Flat/regular/split-vertical.svg new file mode 100644 index 0000000..cba874c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/split-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/spotify-logo.svg b/phosphor_orig/SVGs Flat/regular/spotify-logo.svg new file mode 100644 index 0000000..5814569 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/spotify-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/spray-bottle.svg b/phosphor_orig/SVGs Flat/regular/spray-bottle.svg new file mode 100644 index 0000000..d488ad3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/spray-bottle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/square-half-bottom.svg b/phosphor_orig/SVGs Flat/regular/square-half-bottom.svg new file mode 100644 index 0000000..051f4fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/square-half-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/square-half.svg b/phosphor_orig/SVGs Flat/regular/square-half.svg new file mode 100644 index 0000000..9db207c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/square-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/square-logo.svg b/phosphor_orig/SVGs Flat/regular/square-logo.svg new file mode 100644 index 0000000..8f2ff9c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/square-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/square-split-horizontal.svg b/phosphor_orig/SVGs Flat/regular/square-split-horizontal.svg new file mode 100644 index 0000000..3527ca7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/square-split-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/square-split-vertical.svg b/phosphor_orig/SVGs Flat/regular/square-split-vertical.svg new file mode 100644 index 0000000..86e9b60 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/square-split-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/square.svg b/phosphor_orig/SVGs Flat/regular/square.svg new file mode 100644 index 0000000..043710b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/squares-four.svg b/phosphor_orig/SVGs Flat/regular/squares-four.svg new file mode 100644 index 0000000..6478941 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/squares-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/stack-minus.svg b/phosphor_orig/SVGs Flat/regular/stack-minus.svg new file mode 100644 index 0000000..3a81d6e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/stack-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/stack-overflow-logo.svg b/phosphor_orig/SVGs Flat/regular/stack-overflow-logo.svg new file mode 100644 index 0000000..872508c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/stack-overflow-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/stack-plus.svg b/phosphor_orig/SVGs Flat/regular/stack-plus.svg new file mode 100644 index 0000000..c97e214 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/stack-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/stack-simple.svg b/phosphor_orig/SVGs Flat/regular/stack-simple.svg new file mode 100644 index 0000000..ebaf645 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/stack-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/stack.svg b/phosphor_orig/SVGs Flat/regular/stack.svg new file mode 100644 index 0000000..5325917 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/stack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/stairs.svg b/phosphor_orig/SVGs Flat/regular/stairs.svg new file mode 100644 index 0000000..0d4c233 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/stairs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/stamp.svg b/phosphor_orig/SVGs Flat/regular/stamp.svg new file mode 100644 index 0000000..249b3a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/stamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/standard-definition.svg b/phosphor_orig/SVGs Flat/regular/standard-definition.svg new file mode 100644 index 0000000..79985e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/standard-definition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/star-and-crescent.svg b/phosphor_orig/SVGs Flat/regular/star-and-crescent.svg new file mode 100644 index 0000000..c02cabb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/star-and-crescent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/star-four.svg b/phosphor_orig/SVGs Flat/regular/star-four.svg new file mode 100644 index 0000000..919c103 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/star-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/star-half.svg b/phosphor_orig/SVGs Flat/regular/star-half.svg new file mode 100644 index 0000000..d51d605 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/star-of-david.svg b/phosphor_orig/SVGs Flat/regular/star-of-david.svg new file mode 100644 index 0000000..e706f80 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/star-of-david.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/star.svg b/phosphor_orig/SVGs Flat/regular/star.svg new file mode 100644 index 0000000..4e640f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/steam-logo.svg b/phosphor_orig/SVGs Flat/regular/steam-logo.svg new file mode 100644 index 0000000..521073b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/steam-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/steering-wheel.svg b/phosphor_orig/SVGs Flat/regular/steering-wheel.svg new file mode 100644 index 0000000..fe6f93d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/steering-wheel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/steps.svg b/phosphor_orig/SVGs Flat/regular/steps.svg new file mode 100644 index 0000000..86a0d33 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/steps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/stethoscope.svg b/phosphor_orig/SVGs Flat/regular/stethoscope.svg new file mode 100644 index 0000000..3ecaaf3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/stethoscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sticker.svg b/phosphor_orig/SVGs Flat/regular/sticker.svg new file mode 100644 index 0000000..0c6fbc2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sticker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/stool.svg b/phosphor_orig/SVGs Flat/regular/stool.svg new file mode 100644 index 0000000..9c1272a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/stool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/stop-circle.svg b/phosphor_orig/SVGs Flat/regular/stop-circle.svg new file mode 100644 index 0000000..c95ee2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/stop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/stop.svg b/phosphor_orig/SVGs Flat/regular/stop.svg new file mode 100644 index 0000000..01cccf8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/storefront.svg b/phosphor_orig/SVGs Flat/regular/storefront.svg new file mode 100644 index 0000000..498212e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/storefront.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/strategy.svg b/phosphor_orig/SVGs Flat/regular/strategy.svg new file mode 100644 index 0000000..cadd0d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/strategy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/stripe-logo.svg b/phosphor_orig/SVGs Flat/regular/stripe-logo.svg new file mode 100644 index 0000000..87ae0c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/stripe-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/student.svg b/phosphor_orig/SVGs Flat/regular/student.svg new file mode 100644 index 0000000..ae3bf0a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/student.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/subset-of.svg b/phosphor_orig/SVGs Flat/regular/subset-of.svg new file mode 100644 index 0000000..09b7dcf --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/subset-of.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/subset-proper-of.svg b/phosphor_orig/SVGs Flat/regular/subset-proper-of.svg new file mode 100644 index 0000000..661f8a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/subset-proper-of.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/subtitles-slash.svg b/phosphor_orig/SVGs Flat/regular/subtitles-slash.svg new file mode 100644 index 0000000..f4cb9e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/subtitles-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/subtitles.svg b/phosphor_orig/SVGs Flat/regular/subtitles.svg new file mode 100644 index 0000000..bec932d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/subtitles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/subtract-square.svg b/phosphor_orig/SVGs Flat/regular/subtract-square.svg new file mode 100644 index 0000000..5a30c0e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/subtract-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/subtract.svg b/phosphor_orig/SVGs Flat/regular/subtract.svg new file mode 100644 index 0000000..cfc4234 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/subtract.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/subway.svg b/phosphor_orig/SVGs Flat/regular/subway.svg new file mode 100644 index 0000000..cb5edf9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/subway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/suitcase-rolling.svg b/phosphor_orig/SVGs Flat/regular/suitcase-rolling.svg new file mode 100644 index 0000000..a64548c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/suitcase-rolling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/suitcase-simple.svg b/phosphor_orig/SVGs Flat/regular/suitcase-simple.svg new file mode 100644 index 0000000..7d88b4b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/suitcase-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/suitcase.svg b/phosphor_orig/SVGs Flat/regular/suitcase.svg new file mode 100644 index 0000000..b89d7de --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/suitcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sun-dim.svg b/phosphor_orig/SVGs Flat/regular/sun-dim.svg new file mode 100644 index 0000000..f0107b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sun-dim.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sun-horizon.svg b/phosphor_orig/SVGs Flat/regular/sun-horizon.svg new file mode 100644 index 0000000..9359344 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sun-horizon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sun.svg b/phosphor_orig/SVGs Flat/regular/sun.svg new file mode 100644 index 0000000..2a97d01 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sunglasses.svg b/phosphor_orig/SVGs Flat/regular/sunglasses.svg new file mode 100644 index 0000000..15f2988 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sunglasses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/superset-of.svg b/phosphor_orig/SVGs Flat/regular/superset-of.svg new file mode 100644 index 0000000..73aa315 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/superset-of.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/superset-proper-of.svg b/phosphor_orig/SVGs Flat/regular/superset-proper-of.svg new file mode 100644 index 0000000..97ed1e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/superset-proper-of.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/swap.svg b/phosphor_orig/SVGs Flat/regular/swap.svg new file mode 100644 index 0000000..940fe80 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/swap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/swatches.svg b/phosphor_orig/SVGs Flat/regular/swatches.svg new file mode 100644 index 0000000..4d4995e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/swatches.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/swimming-pool.svg b/phosphor_orig/SVGs Flat/regular/swimming-pool.svg new file mode 100644 index 0000000..ed713ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/swimming-pool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/sword.svg b/phosphor_orig/SVGs Flat/regular/sword.svg new file mode 100644 index 0000000..ec2d44b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/sword.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/synagogue.svg b/phosphor_orig/SVGs Flat/regular/synagogue.svg new file mode 100644 index 0000000..12517f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/synagogue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/syringe.svg b/phosphor_orig/SVGs Flat/regular/syringe.svg new file mode 100644 index 0000000..09b8400 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/syringe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/t-shirt.svg b/phosphor_orig/SVGs Flat/regular/t-shirt.svg new file mode 100644 index 0000000..724bc29 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/t-shirt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/table.svg b/phosphor_orig/SVGs Flat/regular/table.svg new file mode 100644 index 0000000..e625496 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tabs.svg b/phosphor_orig/SVGs Flat/regular/tabs.svg new file mode 100644 index 0000000..c498dcc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tabs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tag-chevron.svg b/phosphor_orig/SVGs Flat/regular/tag-chevron.svg new file mode 100644 index 0000000..6d067c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tag-chevron.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tag-simple.svg b/phosphor_orig/SVGs Flat/regular/tag-simple.svg new file mode 100644 index 0000000..e48acd3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tag-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tag.svg b/phosphor_orig/SVGs Flat/regular/tag.svg new file mode 100644 index 0000000..eecf8bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/target.svg b/phosphor_orig/SVGs Flat/regular/target.svg new file mode 100644 index 0000000..9692a8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/target.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/taxi.svg b/phosphor_orig/SVGs Flat/regular/taxi.svg new file mode 100644 index 0000000..6371680 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/taxi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tea-bag.svg b/phosphor_orig/SVGs Flat/regular/tea-bag.svg new file mode 100644 index 0000000..26980f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tea-bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/telegram-logo.svg b/phosphor_orig/SVGs Flat/regular/telegram-logo.svg new file mode 100644 index 0000000..c830642 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/telegram-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/television-simple.svg b/phosphor_orig/SVGs Flat/regular/television-simple.svg new file mode 100644 index 0000000..a5122d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/television-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/television.svg b/phosphor_orig/SVGs Flat/regular/television.svg new file mode 100644 index 0000000..90a6321 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/television.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tennis-ball.svg b/phosphor_orig/SVGs Flat/regular/tennis-ball.svg new file mode 100644 index 0000000..6ddb762 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tennis-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tent.svg b/phosphor_orig/SVGs Flat/regular/tent.svg new file mode 100644 index 0000000..cdfc7ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/terminal-window.svg b/phosphor_orig/SVGs Flat/regular/terminal-window.svg new file mode 100644 index 0000000..8972c8c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/terminal-window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/terminal.svg b/phosphor_orig/SVGs Flat/regular/terminal.svg new file mode 100644 index 0000000..9f7202c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/terminal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/test-tube.svg b/phosphor_orig/SVGs Flat/regular/test-tube.svg new file mode 100644 index 0000000..827daa1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/test-tube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-a-underline.svg b/phosphor_orig/SVGs Flat/regular/text-a-underline.svg new file mode 100644 index 0000000..39c98c6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-a-underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-aa.svg b/phosphor_orig/SVGs Flat/regular/text-aa.svg new file mode 100644 index 0000000..ec412dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-align-center.svg b/phosphor_orig/SVGs Flat/regular/text-align-center.svg new file mode 100644 index 0000000..dc3d9de --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-align-justify.svg b/phosphor_orig/SVGs Flat/regular/text-align-justify.svg new file mode 100644 index 0000000..97f3dd0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-align-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-align-left.svg b/phosphor_orig/SVGs Flat/regular/text-align-left.svg new file mode 100644 index 0000000..2a0e54e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-align-right.svg b/phosphor_orig/SVGs Flat/regular/text-align-right.svg new file mode 100644 index 0000000..5682c43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-b.svg b/phosphor_orig/SVGs Flat/regular/text-b.svg new file mode 100644 index 0000000..d59c842 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-columns.svg b/phosphor_orig/SVGs Flat/regular/text-columns.svg new file mode 100644 index 0000000..13f654b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-h-five.svg b/phosphor_orig/SVGs Flat/regular/text-h-five.svg new file mode 100644 index 0000000..49ce556 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-h-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-h-four.svg b/phosphor_orig/SVGs Flat/regular/text-h-four.svg new file mode 100644 index 0000000..4a7d15b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-h-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-h-one.svg b/phosphor_orig/SVGs Flat/regular/text-h-one.svg new file mode 100644 index 0000000..c338fbb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-h-one.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-h-six.svg b/phosphor_orig/SVGs Flat/regular/text-h-six.svg new file mode 100644 index 0000000..845929d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-h-six.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-h-three.svg b/phosphor_orig/SVGs Flat/regular/text-h-three.svg new file mode 100644 index 0000000..9914b43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-h-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-h-two.svg b/phosphor_orig/SVGs Flat/regular/text-h-two.svg new file mode 100644 index 0000000..b151876 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-h-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-h.svg b/phosphor_orig/SVGs Flat/regular/text-h.svg new file mode 100644 index 0000000..655a25b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-indent.svg b/phosphor_orig/SVGs Flat/regular/text-indent.svg new file mode 100644 index 0000000..4d00d4b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-indent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-italic.svg b/phosphor_orig/SVGs Flat/regular/text-italic.svg new file mode 100644 index 0000000..a737f2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-outdent.svg b/phosphor_orig/SVGs Flat/regular/text-outdent.svg new file mode 100644 index 0000000..f6ff70e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-outdent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-strikethrough.svg b/phosphor_orig/SVGs Flat/regular/text-strikethrough.svg new file mode 100644 index 0000000..6bc3deb --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-strikethrough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-subscript.svg b/phosphor_orig/SVGs Flat/regular/text-subscript.svg new file mode 100644 index 0000000..25543ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-subscript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-superscript.svg b/phosphor_orig/SVGs Flat/regular/text-superscript.svg new file mode 100644 index 0000000..4ba2cfd --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-superscript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-t-slash.svg b/phosphor_orig/SVGs Flat/regular/text-t-slash.svg new file mode 100644 index 0000000..087c6db --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-t-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-t.svg b/phosphor_orig/SVGs Flat/regular/text-t.svg new file mode 100644 index 0000000..3d23f50 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-t.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/text-underline.svg b/phosphor_orig/SVGs Flat/regular/text-underline.svg new file mode 100644 index 0000000..9aa328d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/text-underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/textbox.svg b/phosphor_orig/SVGs Flat/regular/textbox.svg new file mode 100644 index 0000000..ce8b84f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/textbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/thermometer-cold.svg b/phosphor_orig/SVGs Flat/regular/thermometer-cold.svg new file mode 100644 index 0000000..52bc039 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/thermometer-cold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/thermometer-hot.svg b/phosphor_orig/SVGs Flat/regular/thermometer-hot.svg new file mode 100644 index 0000000..ed27334 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/thermometer-hot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/thermometer-simple.svg b/phosphor_orig/SVGs Flat/regular/thermometer-simple.svg new file mode 100644 index 0000000..cc5a97c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/thermometer-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/thermometer.svg b/phosphor_orig/SVGs Flat/regular/thermometer.svg new file mode 100644 index 0000000..7c9ff38 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/threads-logo.svg b/phosphor_orig/SVGs Flat/regular/threads-logo.svg new file mode 100644 index 0000000..791ccb8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/threads-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/three-d.svg b/phosphor_orig/SVGs Flat/regular/three-d.svg new file mode 100644 index 0000000..4d9f68c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/three-d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/thumbs-down.svg b/phosphor_orig/SVGs Flat/regular/thumbs-down.svg new file mode 100644 index 0000000..c2d170c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/thumbs-up.svg b/phosphor_orig/SVGs Flat/regular/thumbs-up.svg new file mode 100644 index 0000000..6f2ef57 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/ticket.svg b/phosphor_orig/SVGs Flat/regular/ticket.svg new file mode 100644 index 0000000..5c4f1b0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/ticket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tidal-logo.svg b/phosphor_orig/SVGs Flat/regular/tidal-logo.svg new file mode 100644 index 0000000..26c4a5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tidal-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tiktok-logo.svg b/phosphor_orig/SVGs Flat/regular/tiktok-logo.svg new file mode 100644 index 0000000..8138d44 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tiktok-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tilde.svg b/phosphor_orig/SVGs Flat/regular/tilde.svg new file mode 100644 index 0000000..c4a4c03 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tilde.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/timer.svg b/phosphor_orig/SVGs Flat/regular/timer.svg new file mode 100644 index 0000000..7a3a3f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/timer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tip-jar.svg b/phosphor_orig/SVGs Flat/regular/tip-jar.svg new file mode 100644 index 0000000..1f77ad7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tip-jar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tipi.svg b/phosphor_orig/SVGs Flat/regular/tipi.svg new file mode 100644 index 0000000..9b9823d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tipi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tire.svg b/phosphor_orig/SVGs Flat/regular/tire.svg new file mode 100644 index 0000000..4e320a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/toggle-left.svg b/phosphor_orig/SVGs Flat/regular/toggle-left.svg new file mode 100644 index 0000000..d47fc73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/toggle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/toggle-right.svg b/phosphor_orig/SVGs Flat/regular/toggle-right.svg new file mode 100644 index 0000000..4c88003 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/toggle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/toilet-paper.svg b/phosphor_orig/SVGs Flat/regular/toilet-paper.svg new file mode 100644 index 0000000..630611a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/toilet-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/toilet.svg b/phosphor_orig/SVGs Flat/regular/toilet.svg new file mode 100644 index 0000000..9ae13f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/toilet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/toolbox.svg b/phosphor_orig/SVGs Flat/regular/toolbox.svg new file mode 100644 index 0000000..583254a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/toolbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tooth.svg b/phosphor_orig/SVGs Flat/regular/tooth.svg new file mode 100644 index 0000000..d03e6f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tornado.svg b/phosphor_orig/SVGs Flat/regular/tornado.svg new file mode 100644 index 0000000..c5b5862 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tornado.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tote-simple.svg b/phosphor_orig/SVGs Flat/regular/tote-simple.svg new file mode 100644 index 0000000..f5f2ae8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tote-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tote.svg b/phosphor_orig/SVGs Flat/regular/tote.svg new file mode 100644 index 0000000..fd43e90 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/towel.svg b/phosphor_orig/SVGs Flat/regular/towel.svg new file mode 100644 index 0000000..4f20850 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/towel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tractor.svg b/phosphor_orig/SVGs Flat/regular/tractor.svg new file mode 100644 index 0000000..caace66 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tractor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/trademark-registered.svg b/phosphor_orig/SVGs Flat/regular/trademark-registered.svg new file mode 100644 index 0000000..2426937 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/trademark-registered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/trademark.svg b/phosphor_orig/SVGs Flat/regular/trademark.svg new file mode 100644 index 0000000..8deb44b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/trademark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/traffic-cone.svg b/phosphor_orig/SVGs Flat/regular/traffic-cone.svg new file mode 100644 index 0000000..c8da636 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/traffic-cone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/traffic-sign.svg b/phosphor_orig/SVGs Flat/regular/traffic-sign.svg new file mode 100644 index 0000000..e11bdb8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/traffic-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/traffic-signal.svg b/phosphor_orig/SVGs Flat/regular/traffic-signal.svg new file mode 100644 index 0000000..b5774ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/traffic-signal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/train-regional.svg b/phosphor_orig/SVGs Flat/regular/train-regional.svg new file mode 100644 index 0000000..dc5f0f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/train-regional.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/train-simple.svg b/phosphor_orig/SVGs Flat/regular/train-simple.svg new file mode 100644 index 0000000..97593f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/train-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/train.svg b/phosphor_orig/SVGs Flat/regular/train.svg new file mode 100644 index 0000000..a27145e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/train.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tram.svg b/phosphor_orig/SVGs Flat/regular/tram.svg new file mode 100644 index 0000000..95dba58 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/translate.svg b/phosphor_orig/SVGs Flat/regular/translate.svg new file mode 100644 index 0000000..74c2a71 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/translate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/trash-simple.svg b/phosphor_orig/SVGs Flat/regular/trash-simple.svg new file mode 100644 index 0000000..8813f2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/trash-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/trash.svg b/phosphor_orig/SVGs Flat/regular/trash.svg new file mode 100644 index 0000000..9f96393 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tray-arrow-down.svg b/phosphor_orig/SVGs Flat/regular/tray-arrow-down.svg new file mode 100644 index 0000000..bfd200b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tray-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tray-arrow-up.svg b/phosphor_orig/SVGs Flat/regular/tray-arrow-up.svg new file mode 100644 index 0000000..d5d10d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tray-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tray.svg b/phosphor_orig/SVGs Flat/regular/tray.svg new file mode 100644 index 0000000..5086e2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tray.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/treasure-chest.svg b/phosphor_orig/SVGs Flat/regular/treasure-chest.svg new file mode 100644 index 0000000..7b35040 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/treasure-chest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tree-evergreen.svg b/phosphor_orig/SVGs Flat/regular/tree-evergreen.svg new file mode 100644 index 0000000..6aae762 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tree-evergreen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tree-palm.svg b/phosphor_orig/SVGs Flat/regular/tree-palm.svg new file mode 100644 index 0000000..af9616c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tree-palm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tree-structure.svg b/phosphor_orig/SVGs Flat/regular/tree-structure.svg new file mode 100644 index 0000000..f53b916 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tree-structure.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tree-view.svg b/phosphor_orig/SVGs Flat/regular/tree-view.svg new file mode 100644 index 0000000..d2ca799 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tree-view.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tree.svg b/phosphor_orig/SVGs Flat/regular/tree.svg new file mode 100644 index 0000000..d67afb2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/trend-down.svg b/phosphor_orig/SVGs Flat/regular/trend-down.svg new file mode 100644 index 0000000..1d324c2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/trend-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/trend-up.svg b/phosphor_orig/SVGs Flat/regular/trend-up.svg new file mode 100644 index 0000000..ff3ab2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/trend-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/triangle-dashed.svg b/phosphor_orig/SVGs Flat/regular/triangle-dashed.svg new file mode 100644 index 0000000..9d34377 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/triangle-dashed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/triangle.svg b/phosphor_orig/SVGs Flat/regular/triangle.svg new file mode 100644 index 0000000..cb2b49d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/trolley-suitcase.svg b/phosphor_orig/SVGs Flat/regular/trolley-suitcase.svg new file mode 100644 index 0000000..17a2381 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/trolley-suitcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/trolley.svg b/phosphor_orig/SVGs Flat/regular/trolley.svg new file mode 100644 index 0000000..3f27a91 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/trolley.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/trophy.svg b/phosphor_orig/SVGs Flat/regular/trophy.svg new file mode 100644 index 0000000..918b7c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/trophy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/truck-trailer.svg b/phosphor_orig/SVGs Flat/regular/truck-trailer.svg new file mode 100644 index 0000000..fd2d615 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/truck-trailer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/truck.svg b/phosphor_orig/SVGs Flat/regular/truck.svg new file mode 100644 index 0000000..3d9fc5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/tumblr-logo.svg b/phosphor_orig/SVGs Flat/regular/tumblr-logo.svg new file mode 100644 index 0000000..75228f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/tumblr-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/twitch-logo.svg b/phosphor_orig/SVGs Flat/regular/twitch-logo.svg new file mode 100644 index 0000000..ac83ecf --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/twitch-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/twitter-logo.svg b/phosphor_orig/SVGs Flat/regular/twitter-logo.svg new file mode 100644 index 0000000..579ad89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/twitter-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/umbrella-simple.svg b/phosphor_orig/SVGs Flat/regular/umbrella-simple.svg new file mode 100644 index 0000000..d47d031 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/umbrella-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/umbrella.svg b/phosphor_orig/SVGs Flat/regular/umbrella.svg new file mode 100644 index 0000000..0f249bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/union.svg b/phosphor_orig/SVGs Flat/regular/union.svg new file mode 100644 index 0000000..1cf3f5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/union.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/unite-square.svg b/phosphor_orig/SVGs Flat/regular/unite-square.svg new file mode 100644 index 0000000..b8bf7d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/unite-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/unite.svg b/phosphor_orig/SVGs Flat/regular/unite.svg new file mode 100644 index 0000000..d6699f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/unite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/upload-simple.svg b/phosphor_orig/SVGs Flat/regular/upload-simple.svg new file mode 100644 index 0000000..11f55ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/upload-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/upload.svg b/phosphor_orig/SVGs Flat/regular/upload.svg new file mode 100644 index 0000000..6a174ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/usb.svg b/phosphor_orig/SVGs Flat/regular/usb.svg new file mode 100644 index 0000000..d5ce80f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/usb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-check.svg b/phosphor_orig/SVGs Flat/regular/user-check.svg new file mode 100644 index 0000000..e6b69a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-circle-check.svg b/phosphor_orig/SVGs Flat/regular/user-circle-check.svg new file mode 100644 index 0000000..edb5fc3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-circle-dashed.svg b/phosphor_orig/SVGs Flat/regular/user-circle-dashed.svg new file mode 100644 index 0000000..47605a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-circle-dashed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-circle-gear.svg b/phosphor_orig/SVGs Flat/regular/user-circle-gear.svg new file mode 100644 index 0000000..f038c4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-circle-gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-circle-minus.svg b/phosphor_orig/SVGs Flat/regular/user-circle-minus.svg new file mode 100644 index 0000000..8780543 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-circle-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-circle-plus.svg b/phosphor_orig/SVGs Flat/regular/user-circle-plus.svg new file mode 100644 index 0000000..9915847 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-circle-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-circle.svg b/phosphor_orig/SVGs Flat/regular/user-circle.svg new file mode 100644 index 0000000..485fd0d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-focus.svg b/phosphor_orig/SVGs Flat/regular/user-focus.svg new file mode 100644 index 0000000..b89c39e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-focus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-gear.svg b/phosphor_orig/SVGs Flat/regular/user-gear.svg new file mode 100644 index 0000000..cbc1f58 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-list.svg b/phosphor_orig/SVGs Flat/regular/user-list.svg new file mode 100644 index 0000000..738ac9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-minus.svg b/phosphor_orig/SVGs Flat/regular/user-minus.svg new file mode 100644 index 0000000..44f00ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-plus.svg b/phosphor_orig/SVGs Flat/regular/user-plus.svg new file mode 100644 index 0000000..29ec938 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-rectangle.svg b/phosphor_orig/SVGs Flat/regular/user-rectangle.svg new file mode 100644 index 0000000..43a0f95 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-rectangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-sound.svg b/phosphor_orig/SVGs Flat/regular/user-sound.svg new file mode 100644 index 0000000..9fe6c1d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-sound.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-square.svg b/phosphor_orig/SVGs Flat/regular/user-square.svg new file mode 100644 index 0000000..912d218 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user-switch.svg b/phosphor_orig/SVGs Flat/regular/user-switch.svg new file mode 100644 index 0000000..ffb3234 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user-switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/user.svg b/phosphor_orig/SVGs Flat/regular/user.svg new file mode 100644 index 0000000..d560c5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/users-four.svg b/phosphor_orig/SVGs Flat/regular/users-four.svg new file mode 100644 index 0000000..1ea9009 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/users-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/users-three.svg b/phosphor_orig/SVGs Flat/regular/users-three.svg new file mode 100644 index 0000000..296e2c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/users-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/users.svg b/phosphor_orig/SVGs Flat/regular/users.svg new file mode 100644 index 0000000..e53d895 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/users.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/van.svg b/phosphor_orig/SVGs Flat/regular/van.svg new file mode 100644 index 0000000..69f7b6a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/van.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/vault.svg b/phosphor_orig/SVGs Flat/regular/vault.svg new file mode 100644 index 0000000..9a47130 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/vault.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/vector-three.svg b/phosphor_orig/SVGs Flat/regular/vector-three.svg new file mode 100644 index 0000000..0f1bebf --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/vector-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/vector-two.svg b/phosphor_orig/SVGs Flat/regular/vector-two.svg new file mode 100644 index 0000000..2b36f05 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/vector-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/vibrate.svg b/phosphor_orig/SVGs Flat/regular/vibrate.svg new file mode 100644 index 0000000..d58d478 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/vibrate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/video-camera-slash.svg b/phosphor_orig/SVGs Flat/regular/video-camera-slash.svg new file mode 100644 index 0000000..f6dbb07 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/video-camera-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/video-camera.svg b/phosphor_orig/SVGs Flat/regular/video-camera.svg new file mode 100644 index 0000000..de861f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/video-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/video-conference.svg b/phosphor_orig/SVGs Flat/regular/video-conference.svg new file mode 100644 index 0000000..bed7a48 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/video-conference.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/video.svg b/phosphor_orig/SVGs Flat/regular/video.svg new file mode 100644 index 0000000..dd24f78 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/vignette.svg b/phosphor_orig/SVGs Flat/regular/vignette.svg new file mode 100644 index 0000000..2d2fc02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/vignette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/vinyl-record.svg b/phosphor_orig/SVGs Flat/regular/vinyl-record.svg new file mode 100644 index 0000000..796d74f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/vinyl-record.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/virtual-reality.svg b/phosphor_orig/SVGs Flat/regular/virtual-reality.svg new file mode 100644 index 0000000..87db5dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/virtual-reality.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/virus.svg b/phosphor_orig/SVGs Flat/regular/virus.svg new file mode 100644 index 0000000..28394a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/visor.svg b/phosphor_orig/SVGs Flat/regular/visor.svg new file mode 100644 index 0000000..b608ac8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/visor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/voicemail.svg b/phosphor_orig/SVGs Flat/regular/voicemail.svg new file mode 100644 index 0000000..a85455b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/voicemail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/volleyball.svg b/phosphor_orig/SVGs Flat/regular/volleyball.svg new file mode 100644 index 0000000..a9a0086 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/volleyball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wall.svg b/phosphor_orig/SVGs Flat/regular/wall.svg new file mode 100644 index 0000000..fe2b316 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wall.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wallet.svg b/phosphor_orig/SVGs Flat/regular/wallet.svg new file mode 100644 index 0000000..3942a1c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/warehouse.svg b/phosphor_orig/SVGs Flat/regular/warehouse.svg new file mode 100644 index 0000000..2308865 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/warehouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/warning-circle.svg b/phosphor_orig/SVGs Flat/regular/warning-circle.svg new file mode 100644 index 0000000..fbfeb9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/warning-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/warning-diamond.svg b/phosphor_orig/SVGs Flat/regular/warning-diamond.svg new file mode 100644 index 0000000..e3bf004 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/warning-diamond.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/warning-octagon.svg b/phosphor_orig/SVGs Flat/regular/warning-octagon.svg new file mode 100644 index 0000000..43e0ebf --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/warning-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/warning.svg b/phosphor_orig/SVGs Flat/regular/warning.svg new file mode 100644 index 0000000..1915993 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/washing-machine.svg b/phosphor_orig/SVGs Flat/regular/washing-machine.svg new file mode 100644 index 0000000..645da4a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/washing-machine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/watch.svg b/phosphor_orig/SVGs Flat/regular/watch.svg new file mode 100644 index 0000000..a919c8d --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/watch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wave-sawtooth.svg b/phosphor_orig/SVGs Flat/regular/wave-sawtooth.svg new file mode 100644 index 0000000..0f87e36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wave-sawtooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wave-sine.svg b/phosphor_orig/SVGs Flat/regular/wave-sine.svg new file mode 100644 index 0000000..7fca563 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wave-sine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wave-square.svg b/phosphor_orig/SVGs Flat/regular/wave-square.svg new file mode 100644 index 0000000..ca466a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wave-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wave-triangle.svg b/phosphor_orig/SVGs Flat/regular/wave-triangle.svg new file mode 100644 index 0000000..a90361b --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wave-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/waveform-slash.svg b/phosphor_orig/SVGs Flat/regular/waveform-slash.svg new file mode 100644 index 0000000..7df286f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/waveform-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/waveform.svg b/phosphor_orig/SVGs Flat/regular/waveform.svg new file mode 100644 index 0000000..97e63bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/waveform.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/waves.svg b/phosphor_orig/SVGs Flat/regular/waves.svg new file mode 100644 index 0000000..85d255c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/waves.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/webcam-slash.svg b/phosphor_orig/SVGs Flat/regular/webcam-slash.svg new file mode 100644 index 0000000..934769c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/webcam-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/webcam.svg b/phosphor_orig/SVGs Flat/regular/webcam.svg new file mode 100644 index 0000000..4180349 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/webcam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/webhooks-logo.svg b/phosphor_orig/SVGs Flat/regular/webhooks-logo.svg new file mode 100644 index 0000000..ef6ef92 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/webhooks-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wechat-logo.svg b/phosphor_orig/SVGs Flat/regular/wechat-logo.svg new file mode 100644 index 0000000..9ba69f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wechat-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/whatsapp-logo.svg b/phosphor_orig/SVGs Flat/regular/whatsapp-logo.svg new file mode 100644 index 0000000..158b33a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/whatsapp-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wheelchair-motion.svg b/phosphor_orig/SVGs Flat/regular/wheelchair-motion.svg new file mode 100644 index 0000000..f5e90c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wheelchair-motion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wheelchair.svg b/phosphor_orig/SVGs Flat/regular/wheelchair.svg new file mode 100644 index 0000000..1a5efed --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wheelchair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wifi-high.svg b/phosphor_orig/SVGs Flat/regular/wifi-high.svg new file mode 100644 index 0000000..2ca153e --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wifi-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wifi-low.svg b/phosphor_orig/SVGs Flat/regular/wifi-low.svg new file mode 100644 index 0000000..280a407 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wifi-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wifi-medium.svg b/phosphor_orig/SVGs Flat/regular/wifi-medium.svg new file mode 100644 index 0000000..c2b16f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wifi-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wifi-none.svg b/phosphor_orig/SVGs Flat/regular/wifi-none.svg new file mode 100644 index 0000000..adc441c --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wifi-none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wifi-slash.svg b/phosphor_orig/SVGs Flat/regular/wifi-slash.svg new file mode 100644 index 0000000..cf6c00a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wifi-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wifi-x.svg b/phosphor_orig/SVGs Flat/regular/wifi-x.svg new file mode 100644 index 0000000..4024def --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wifi-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wind.svg b/phosphor_orig/SVGs Flat/regular/wind.svg new file mode 100644 index 0000000..d1082ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/windmill.svg b/phosphor_orig/SVGs Flat/regular/windmill.svg new file mode 100644 index 0000000..9aa90c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/windmill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/windows-logo.svg b/phosphor_orig/SVGs Flat/regular/windows-logo.svg new file mode 100644 index 0000000..828be17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/windows-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wine.svg b/phosphor_orig/SVGs Flat/regular/wine.svg new file mode 100644 index 0000000..934e627 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/wrench.svg b/phosphor_orig/SVGs Flat/regular/wrench.svg new file mode 100644 index 0000000..c2dd87f --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/wrench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/x-circle.svg b/phosphor_orig/SVGs Flat/regular/x-circle.svg new file mode 100644 index 0000000..672fb69 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/x-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/x-logo.svg b/phosphor_orig/SVGs Flat/regular/x-logo.svg new file mode 100644 index 0000000..f9dec1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/x-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/x-square.svg b/phosphor_orig/SVGs Flat/regular/x-square.svg new file mode 100644 index 0000000..ab5b1c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/x-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/x.svg b/phosphor_orig/SVGs Flat/regular/x.svg new file mode 100644 index 0000000..2ee41d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/yarn.svg b/phosphor_orig/SVGs Flat/regular/yarn.svg new file mode 100644 index 0000000..da8ab62 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/yarn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/yin-yang.svg b/phosphor_orig/SVGs Flat/regular/yin-yang.svg new file mode 100644 index 0000000..7189983 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/yin-yang.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/regular/youtube-logo.svg b/phosphor_orig/SVGs Flat/regular/youtube-logo.svg new file mode 100644 index 0000000..3d6eda2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/regular/youtube-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/acorn-thin.svg b/phosphor_orig/SVGs Flat/thin/acorn-thin.svg new file mode 100644 index 0000000..8763d88 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/acorn-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/address-book-tabs-thin.svg b/phosphor_orig/SVGs Flat/thin/address-book-tabs-thin.svg new file mode 100644 index 0000000..c415626 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/address-book-tabs-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/address-book-thin.svg b/phosphor_orig/SVGs Flat/thin/address-book-thin.svg new file mode 100644 index 0000000..b644b85 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/address-book-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/air-traffic-control-thin.svg b/phosphor_orig/SVGs Flat/thin/air-traffic-control-thin.svg new file mode 100644 index 0000000..256a942 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/air-traffic-control-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/airplane-in-flight-thin.svg b/phosphor_orig/SVGs Flat/thin/airplane-in-flight-thin.svg new file mode 100644 index 0000000..5e81968 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/airplane-in-flight-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/airplane-landing-thin.svg b/phosphor_orig/SVGs Flat/thin/airplane-landing-thin.svg new file mode 100644 index 0000000..5437d21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/airplane-landing-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/airplane-takeoff-thin.svg b/phosphor_orig/SVGs Flat/thin/airplane-takeoff-thin.svg new file mode 100644 index 0000000..6136bf5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/airplane-takeoff-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/airplane-taxiing-thin.svg b/phosphor_orig/SVGs Flat/thin/airplane-taxiing-thin.svg new file mode 100644 index 0000000..eb9c9ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/airplane-taxiing-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/airplane-thin.svg b/phosphor_orig/SVGs Flat/thin/airplane-thin.svg new file mode 100644 index 0000000..77cf593 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/airplane-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/airplane-tilt-thin.svg b/phosphor_orig/SVGs Flat/thin/airplane-tilt-thin.svg new file mode 100644 index 0000000..ddaba3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/airplane-tilt-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/airplay-thin.svg b/phosphor_orig/SVGs Flat/thin/airplay-thin.svg new file mode 100644 index 0000000..ff56329 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/airplay-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/alarm-thin.svg b/phosphor_orig/SVGs Flat/thin/alarm-thin.svg new file mode 100644 index 0000000..194c91d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/alarm-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/alien-thin.svg b/phosphor_orig/SVGs Flat/thin/alien-thin.svg new file mode 100644 index 0000000..234acc5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/alien-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/align-bottom-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/align-bottom-simple-thin.svg new file mode 100644 index 0000000..12a4fa8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/align-bottom-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/align-bottom-thin.svg b/phosphor_orig/SVGs Flat/thin/align-bottom-thin.svg new file mode 100644 index 0000000..8636b5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/align-bottom-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/align-center-horizontal-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/align-center-horizontal-simple-thin.svg new file mode 100644 index 0000000..ffa0121 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/align-center-horizontal-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/align-center-horizontal-thin.svg b/phosphor_orig/SVGs Flat/thin/align-center-horizontal-thin.svg new file mode 100644 index 0000000..f1f5d2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/align-center-horizontal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/align-center-vertical-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/align-center-vertical-simple-thin.svg new file mode 100644 index 0000000..7e6dfd0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/align-center-vertical-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/align-center-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/align-center-vertical-thin.svg new file mode 100644 index 0000000..626f917 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/align-center-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/align-left-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/align-left-simple-thin.svg new file mode 100644 index 0000000..7608279 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/align-left-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/align-left-thin.svg b/phosphor_orig/SVGs Flat/thin/align-left-thin.svg new file mode 100644 index 0000000..04c113a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/align-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/align-right-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/align-right-simple-thin.svg new file mode 100644 index 0000000..62c6cee --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/align-right-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/align-right-thin.svg b/phosphor_orig/SVGs Flat/thin/align-right-thin.svg new file mode 100644 index 0000000..398734c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/align-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/align-top-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/align-top-simple-thin.svg new file mode 100644 index 0000000..29ebc9c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/align-top-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/align-top-thin.svg b/phosphor_orig/SVGs Flat/thin/align-top-thin.svg new file mode 100644 index 0000000..c0b1622 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/align-top-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/amazon-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/amazon-logo-thin.svg new file mode 100644 index 0000000..1a7f8a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/amazon-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/ambulance-thin.svg b/phosphor_orig/SVGs Flat/thin/ambulance-thin.svg new file mode 100644 index 0000000..dc6126d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/ambulance-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/anchor-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/anchor-simple-thin.svg new file mode 100644 index 0000000..8161fdd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/anchor-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/anchor-thin.svg b/phosphor_orig/SVGs Flat/thin/anchor-thin.svg new file mode 100644 index 0000000..e9e72ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/anchor-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/android-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/android-logo-thin.svg new file mode 100644 index 0000000..bbd2a9a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/android-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/angle-thin.svg b/phosphor_orig/SVGs Flat/thin/angle-thin.svg new file mode 100644 index 0000000..32f230c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/angle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/angular-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/angular-logo-thin.svg new file mode 100644 index 0000000..e63bae9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/angular-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/aperture-thin.svg b/phosphor_orig/SVGs Flat/thin/aperture-thin.svg new file mode 100644 index 0000000..35747ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/aperture-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/app-store-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/app-store-logo-thin.svg new file mode 100644 index 0000000..2ec0189 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/app-store-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/app-window-thin.svg b/phosphor_orig/SVGs Flat/thin/app-window-thin.svg new file mode 100644 index 0000000..709937b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/app-window-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/apple-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/apple-logo-thin.svg new file mode 100644 index 0000000..04fa82f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/apple-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/apple-podcasts-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/apple-podcasts-logo-thin.svg new file mode 100644 index 0000000..402b104 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/apple-podcasts-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/approximate-equals-thin.svg b/phosphor_orig/SVGs Flat/thin/approximate-equals-thin.svg new file mode 100644 index 0000000..8fba5ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/approximate-equals-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/archive-thin.svg b/phosphor_orig/SVGs Flat/thin/archive-thin.svg new file mode 100644 index 0000000..43acfe4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/archive-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/armchair-thin.svg b/phosphor_orig/SVGs Flat/thin/armchair-thin.svg new file mode 100644 index 0000000..b6271cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/armchair-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-arc-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-arc-left-thin.svg new file mode 100644 index 0000000..98d5af5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-arc-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-arc-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-arc-right-thin.svg new file mode 100644 index 0000000..6819cee --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-arc-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-bend-double-up-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-bend-double-up-left-thin.svg new file mode 100644 index 0000000..ee27d0a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-bend-double-up-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-bend-double-up-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-bend-double-up-right-thin.svg new file mode 100644 index 0000000..0957873 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-bend-double-up-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-bend-down-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-bend-down-left-thin.svg new file mode 100644 index 0000000..3d959b1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-bend-down-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-bend-down-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-bend-down-right-thin.svg new file mode 100644 index 0000000..ab21bb2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-bend-down-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-bend-left-down-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-bend-left-down-thin.svg new file mode 100644 index 0000000..5ee4b32 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-bend-left-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-bend-left-up-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-bend-left-up-thin.svg new file mode 100644 index 0000000..d868390 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-bend-left-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-bend-right-down-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-bend-right-down-thin.svg new file mode 100644 index 0000000..b2e71cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-bend-right-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-bend-right-up-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-bend-right-up-thin.svg new file mode 100644 index 0000000..0ebaf2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-bend-right-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-bend-up-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-bend-up-left-thin.svg new file mode 100644 index 0000000..0426c4f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-bend-up-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-bend-up-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-bend-up-right-thin.svg new file mode 100644 index 0000000..d85ece3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-bend-up-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-circle-down-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-circle-down-left-thin.svg new file mode 100644 index 0000000..0ff3971 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-circle-down-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-circle-down-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-circle-down-right-thin.svg new file mode 100644 index 0000000..293bee2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-circle-down-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-circle-down-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-circle-down-thin.svg new file mode 100644 index 0000000..7672a99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-circle-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-circle-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-circle-left-thin.svg new file mode 100644 index 0000000..d73631f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-circle-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-circle-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-circle-right-thin.svg new file mode 100644 index 0000000..acbf00d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-circle-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-circle-up-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-circle-up-left-thin.svg new file mode 100644 index 0000000..ae90ae2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-circle-up-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-circle-up-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-circle-up-right-thin.svg new file mode 100644 index 0000000..bdd60ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-circle-up-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-circle-up-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-circle-up-thin.svg new file mode 100644 index 0000000..cc6f904 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-circle-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-clockwise-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-clockwise-thin.svg new file mode 100644 index 0000000..9c941d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-clockwise-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-counter-clockwise-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-counter-clockwise-thin.svg new file mode 100644 index 0000000..7b0bac0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-counter-clockwise-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-down-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-down-left-thin.svg new file mode 100644 index 0000000..7e6d03d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-down-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-down-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-down-right-thin.svg new file mode 100644 index 0000000..1ced39b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-down-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-down-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-down-thin.svg new file mode 100644 index 0000000..872684b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-elbow-down-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-elbow-down-left-thin.svg new file mode 100644 index 0000000..34ca9c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-elbow-down-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-elbow-down-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-elbow-down-right-thin.svg new file mode 100644 index 0000000..ea031db --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-elbow-down-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-elbow-left-down-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-elbow-left-down-thin.svg new file mode 100644 index 0000000..2ce2d6c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-elbow-left-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-elbow-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-elbow-left-thin.svg new file mode 100644 index 0000000..9aebbfc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-elbow-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-elbow-left-up-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-elbow-left-up-thin.svg new file mode 100644 index 0000000..df947f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-elbow-left-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-elbow-right-down-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-elbow-right-down-thin.svg new file mode 100644 index 0000000..4f06e1e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-elbow-right-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-elbow-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-elbow-right-thin.svg new file mode 100644 index 0000000..734c774 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-elbow-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-elbow-right-up-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-elbow-right-up-thin.svg new file mode 100644 index 0000000..edf705a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-elbow-right-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-elbow-up-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-elbow-up-left-thin.svg new file mode 100644 index 0000000..f4050f9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-elbow-up-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-elbow-up-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-elbow-up-right-thin.svg new file mode 100644 index 0000000..a3d0709 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-elbow-up-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-fat-down-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-fat-down-thin.svg new file mode 100644 index 0000000..0154642 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-fat-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-fat-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-fat-left-thin.svg new file mode 100644 index 0000000..f29488b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-fat-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-fat-line-down-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-fat-line-down-thin.svg new file mode 100644 index 0000000..6f2c75a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-fat-line-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-fat-line-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-fat-line-left-thin.svg new file mode 100644 index 0000000..8a9ca17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-fat-line-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-fat-line-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-fat-line-right-thin.svg new file mode 100644 index 0000000..2210be7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-fat-line-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-fat-line-up-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-fat-line-up-thin.svg new file mode 100644 index 0000000..e32ea65 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-fat-line-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-fat-lines-down-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-fat-lines-down-thin.svg new file mode 100644 index 0000000..84dfc22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-fat-lines-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-fat-lines-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-fat-lines-left-thin.svg new file mode 100644 index 0000000..83015c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-fat-lines-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-fat-lines-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-fat-lines-right-thin.svg new file mode 100644 index 0000000..4754297 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-fat-lines-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-fat-lines-up-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-fat-lines-up-thin.svg new file mode 100644 index 0000000..b53abc3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-fat-lines-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-fat-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-fat-right-thin.svg new file mode 100644 index 0000000..0c0ca56 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-fat-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-fat-up-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-fat-up-thin.svg new file mode 100644 index 0000000..437069f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-fat-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-left-thin.svg new file mode 100644 index 0000000..ada4175 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-line-down-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-line-down-left-thin.svg new file mode 100644 index 0000000..9e051a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-line-down-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-line-down-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-line-down-right-thin.svg new file mode 100644 index 0000000..49a748f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-line-down-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-line-down-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-line-down-thin.svg new file mode 100644 index 0000000..c760613 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-line-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-line-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-line-left-thin.svg new file mode 100644 index 0000000..fc90281 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-line-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-line-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-line-right-thin.svg new file mode 100644 index 0000000..7c9c951 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-line-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-line-up-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-line-up-left-thin.svg new file mode 100644 index 0000000..61f4cdc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-line-up-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-line-up-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-line-up-right-thin.svg new file mode 100644 index 0000000..1d4df6f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-line-up-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-line-up-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-line-up-thin.svg new file mode 100644 index 0000000..bc179b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-line-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-right-thin.svg new file mode 100644 index 0000000..fd91e94 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-square-down-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-square-down-left-thin.svg new file mode 100644 index 0000000..cc25a9d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-square-down-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-square-down-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-square-down-right-thin.svg new file mode 100644 index 0000000..61cd8f3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-square-down-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-square-down-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-square-down-thin.svg new file mode 100644 index 0000000..008274d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-square-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-square-in-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-square-in-thin.svg new file mode 100644 index 0000000..ffb588a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-square-in-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-square-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-square-left-thin.svg new file mode 100644 index 0000000..5077d64 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-square-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-square-out-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-square-out-thin.svg new file mode 100644 index 0000000..1e38218 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-square-out-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-square-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-square-right-thin.svg new file mode 100644 index 0000000..de8744b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-square-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-square-up-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-square-up-left-thin.svg new file mode 100644 index 0000000..5e5144f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-square-up-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-square-up-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-square-up-right-thin.svg new file mode 100644 index 0000000..59d764e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-square-up-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-square-up-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-square-up-thin.svg new file mode 100644 index 0000000..2b9fff9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-square-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-u-down-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-u-down-left-thin.svg new file mode 100644 index 0000000..d097573 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-u-down-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-u-down-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-u-down-right-thin.svg new file mode 100644 index 0000000..6c739aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-u-down-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-u-left-down-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-u-left-down-thin.svg new file mode 100644 index 0000000..356fe15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-u-left-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-u-left-up-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-u-left-up-thin.svg new file mode 100644 index 0000000..60f0d58 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-u-left-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-u-right-down-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-u-right-down-thin.svg new file mode 100644 index 0000000..2cc6b3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-u-right-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-u-right-up-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-u-right-up-thin.svg new file mode 100644 index 0000000..8eb627b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-u-right-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-u-up-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-u-up-left-thin.svg new file mode 100644 index 0000000..92b00b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-u-up-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-u-up-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-u-up-right-thin.svg new file mode 100644 index 0000000..e5f3768 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-u-up-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-up-left-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-up-left-thin.svg new file mode 100644 index 0000000..a0955c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-up-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-up-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-up-right-thin.svg new file mode 100644 index 0000000..198bba2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-up-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrow-up-thin.svg b/phosphor_orig/SVGs Flat/thin/arrow-up-thin.svg new file mode 100644 index 0000000..72e66f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrow-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-clockwise-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-clockwise-thin.svg new file mode 100644 index 0000000..1c90441 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-clockwise-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-counter-clockwise-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-counter-clockwise-thin.svg new file mode 100644 index 0000000..1c25f31 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-counter-clockwise-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-down-up-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-down-up-thin.svg new file mode 100644 index 0000000..aac5c1c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-down-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-horizontal-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-horizontal-thin.svg new file mode 100644 index 0000000..179153e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-horizontal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-in-cardinal-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-in-cardinal-thin.svg new file mode 100644 index 0000000..733acaf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-in-cardinal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-in-line-horizontal-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-in-line-horizontal-thin.svg new file mode 100644 index 0000000..f60baa4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-in-line-horizontal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-in-line-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-in-line-vertical-thin.svg new file mode 100644 index 0000000..ce9760d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-in-line-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-in-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-in-simple-thin.svg new file mode 100644 index 0000000..bc62d06 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-in-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-in-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-in-thin.svg new file mode 100644 index 0000000..9d9ae7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-in-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-left-right-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-left-right-thin.svg new file mode 100644 index 0000000..c806040 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-left-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-merge-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-merge-thin.svg new file mode 100644 index 0000000..651706c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-merge-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-out-cardinal-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-out-cardinal-thin.svg new file mode 100644 index 0000000..58a146a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-out-cardinal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-out-line-horizontal-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-out-line-horizontal-thin.svg new file mode 100644 index 0000000..c4c7633 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-out-line-horizontal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-out-line-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-out-line-vertical-thin.svg new file mode 100644 index 0000000..596e6fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-out-line-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-out-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-out-simple-thin.svg new file mode 100644 index 0000000..7e31614 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-out-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-out-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-out-thin.svg new file mode 100644 index 0000000..7afa185 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-out-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-split-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-split-thin.svg new file mode 100644 index 0000000..66271fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-split-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/arrows-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/arrows-vertical-thin.svg new file mode 100644 index 0000000..c18b9e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/arrows-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/article-medium-thin.svg b/phosphor_orig/SVGs Flat/thin/article-medium-thin.svg new file mode 100644 index 0000000..2bd6761 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/article-medium-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/article-ny-times-thin.svg b/phosphor_orig/SVGs Flat/thin/article-ny-times-thin.svg new file mode 100644 index 0000000..d03f046 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/article-ny-times-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/article-thin.svg b/phosphor_orig/SVGs Flat/thin/article-thin.svg new file mode 100644 index 0000000..9ecb0de --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/article-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/asclepius-thin.svg b/phosphor_orig/SVGs Flat/thin/asclepius-thin.svg new file mode 100644 index 0000000..f65be7a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/asclepius-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/asterisk-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/asterisk-simple-thin.svg new file mode 100644 index 0000000..f156d25 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/asterisk-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/asterisk-thin.svg b/phosphor_orig/SVGs Flat/thin/asterisk-thin.svg new file mode 100644 index 0000000..50f391f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/asterisk-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/at-thin.svg b/phosphor_orig/SVGs Flat/thin/at-thin.svg new file mode 100644 index 0000000..d1f44f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/at-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/atom-thin.svg b/phosphor_orig/SVGs Flat/thin/atom-thin.svg new file mode 100644 index 0000000..4b27676 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/atom-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/avocado-thin.svg b/phosphor_orig/SVGs Flat/thin/avocado-thin.svg new file mode 100644 index 0000000..5938005 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/avocado-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/axe-thin.svg b/phosphor_orig/SVGs Flat/thin/axe-thin.svg new file mode 100644 index 0000000..4eea291 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/axe-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/baby-carriage-thin.svg b/phosphor_orig/SVGs Flat/thin/baby-carriage-thin.svg new file mode 100644 index 0000000..df54764 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/baby-carriage-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/baby-thin.svg b/phosphor_orig/SVGs Flat/thin/baby-thin.svg new file mode 100644 index 0000000..cd8c893 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/baby-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/backpack-thin.svg b/phosphor_orig/SVGs Flat/thin/backpack-thin.svg new file mode 100644 index 0000000..c7328c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/backpack-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/backspace-thin.svg b/phosphor_orig/SVGs Flat/thin/backspace-thin.svg new file mode 100644 index 0000000..4fbd574 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/backspace-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bag-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/bag-simple-thin.svg new file mode 100644 index 0000000..c84e715 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bag-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bag-thin.svg b/phosphor_orig/SVGs Flat/thin/bag-thin.svg new file mode 100644 index 0000000..2865975 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bag-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/balloon-thin.svg b/phosphor_orig/SVGs Flat/thin/balloon-thin.svg new file mode 100644 index 0000000..d8d6741 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/balloon-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bandaids-thin.svg b/phosphor_orig/SVGs Flat/thin/bandaids-thin.svg new file mode 100644 index 0000000..dcefb37 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bandaids-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bank-thin.svg b/phosphor_orig/SVGs Flat/thin/bank-thin.svg new file mode 100644 index 0000000..c310047 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bank-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/barbell-thin.svg b/phosphor_orig/SVGs Flat/thin/barbell-thin.svg new file mode 100644 index 0000000..85c27f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/barbell-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/barcode-thin.svg b/phosphor_orig/SVGs Flat/thin/barcode-thin.svg new file mode 100644 index 0000000..790c93f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/barcode-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/barn-thin.svg b/phosphor_orig/SVGs Flat/thin/barn-thin.svg new file mode 100644 index 0000000..72184d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/barn-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/barricade-thin.svg b/phosphor_orig/SVGs Flat/thin/barricade-thin.svg new file mode 100644 index 0000000..a700c4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/barricade-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/baseball-cap-thin.svg b/phosphor_orig/SVGs Flat/thin/baseball-cap-thin.svg new file mode 100644 index 0000000..403dbd8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/baseball-cap-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/baseball-helmet-thin.svg b/phosphor_orig/SVGs Flat/thin/baseball-helmet-thin.svg new file mode 100644 index 0000000..4abcb8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/baseball-helmet-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/baseball-thin.svg b/phosphor_orig/SVGs Flat/thin/baseball-thin.svg new file mode 100644 index 0000000..8b9aaa0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/baseball-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/basket-thin.svg b/phosphor_orig/SVGs Flat/thin/basket-thin.svg new file mode 100644 index 0000000..47f61c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/basket-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/basketball-thin.svg b/phosphor_orig/SVGs Flat/thin/basketball-thin.svg new file mode 100644 index 0000000..eae0b6e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/basketball-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bathtub-thin.svg b/phosphor_orig/SVGs Flat/thin/bathtub-thin.svg new file mode 100644 index 0000000..7ada90b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bathtub-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-charging-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-charging-thin.svg new file mode 100644 index 0000000..e5add46 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-charging-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-charging-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-charging-vertical-thin.svg new file mode 100644 index 0000000..2c3850b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-charging-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-empty-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-empty-thin.svg new file mode 100644 index 0000000..5aa8a04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-empty-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-full-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-full-thin.svg new file mode 100644 index 0000000..adbab75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-full-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-high-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-high-thin.svg new file mode 100644 index 0000000..7294ce8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-high-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-low-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-low-thin.svg new file mode 100644 index 0000000..078311a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-low-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-medium-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-medium-thin.svg new file mode 100644 index 0000000..25acc57 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-medium-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-plus-thin.svg new file mode 100644 index 0000000..61665ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-plus-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-plus-vertical-thin.svg new file mode 100644 index 0000000..3c3fbfb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-plus-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-vertical-empty-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-vertical-empty-thin.svg new file mode 100644 index 0000000..8f54e3c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-vertical-empty-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-vertical-full-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-vertical-full-thin.svg new file mode 100644 index 0000000..76ec636 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-vertical-full-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-vertical-high-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-vertical-high-thin.svg new file mode 100644 index 0000000..afc1946 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-vertical-high-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-vertical-low-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-vertical-low-thin.svg new file mode 100644 index 0000000..c0217c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-vertical-low-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-vertical-medium-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-vertical-medium-thin.svg new file mode 100644 index 0000000..939ce68 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-vertical-medium-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-warning-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-warning-thin.svg new file mode 100644 index 0000000..2a38cf5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-warning-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/battery-warning-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/battery-warning-vertical-thin.svg new file mode 100644 index 0000000..19559a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/battery-warning-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/beach-ball-thin.svg b/phosphor_orig/SVGs Flat/thin/beach-ball-thin.svg new file mode 100644 index 0000000..7afe00b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/beach-ball-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/beanie-thin.svg b/phosphor_orig/SVGs Flat/thin/beanie-thin.svg new file mode 100644 index 0000000..030480c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/beanie-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bed-thin.svg b/phosphor_orig/SVGs Flat/thin/bed-thin.svg new file mode 100644 index 0000000..429308a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bed-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/beer-bottle-thin.svg b/phosphor_orig/SVGs Flat/thin/beer-bottle-thin.svg new file mode 100644 index 0000000..0c349b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/beer-bottle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/beer-stein-thin.svg b/phosphor_orig/SVGs Flat/thin/beer-stein-thin.svg new file mode 100644 index 0000000..3f37848 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/beer-stein-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/behance-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/behance-logo-thin.svg new file mode 100644 index 0000000..39ee5cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/behance-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bell-ringing-thin.svg b/phosphor_orig/SVGs Flat/thin/bell-ringing-thin.svg new file mode 100644 index 0000000..fe343c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bell-ringing-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bell-simple-ringing-thin.svg b/phosphor_orig/SVGs Flat/thin/bell-simple-ringing-thin.svg new file mode 100644 index 0000000..42cb79e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bell-simple-ringing-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bell-simple-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/bell-simple-slash-thin.svg new file mode 100644 index 0000000..edb0db6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bell-simple-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bell-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/bell-simple-thin.svg new file mode 100644 index 0000000..ff2bf57 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bell-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bell-simple-z-thin.svg b/phosphor_orig/SVGs Flat/thin/bell-simple-z-thin.svg new file mode 100644 index 0000000..b27962d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bell-simple-z-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bell-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/bell-slash-thin.svg new file mode 100644 index 0000000..447cc93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bell-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bell-thin.svg b/phosphor_orig/SVGs Flat/thin/bell-thin.svg new file mode 100644 index 0000000..33350d6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bell-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bell-z-thin.svg b/phosphor_orig/SVGs Flat/thin/bell-z-thin.svg new file mode 100644 index 0000000..df3e4b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bell-z-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/belt-thin.svg b/phosphor_orig/SVGs Flat/thin/belt-thin.svg new file mode 100644 index 0000000..0e19bfb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/belt-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bezier-curve-thin.svg b/phosphor_orig/SVGs Flat/thin/bezier-curve-thin.svg new file mode 100644 index 0000000..67cae86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bezier-curve-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bicycle-thin.svg b/phosphor_orig/SVGs Flat/thin/bicycle-thin.svg new file mode 100644 index 0000000..bdcde38 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bicycle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/binary-thin.svg b/phosphor_orig/SVGs Flat/thin/binary-thin.svg new file mode 100644 index 0000000..b6a0620 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/binary-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/binoculars-thin.svg b/phosphor_orig/SVGs Flat/thin/binoculars-thin.svg new file mode 100644 index 0000000..a362f99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/binoculars-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/biohazard-thin.svg b/phosphor_orig/SVGs Flat/thin/biohazard-thin.svg new file mode 100644 index 0000000..5a636f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/biohazard-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bird-thin.svg b/phosphor_orig/SVGs Flat/thin/bird-thin.svg new file mode 100644 index 0000000..755b33e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bird-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/blueprint-thin.svg b/phosphor_orig/SVGs Flat/thin/blueprint-thin.svg new file mode 100644 index 0000000..7409f02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/blueprint-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bluetooth-connected-thin.svg b/phosphor_orig/SVGs Flat/thin/bluetooth-connected-thin.svg new file mode 100644 index 0000000..f7dc079 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bluetooth-connected-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bluetooth-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/bluetooth-slash-thin.svg new file mode 100644 index 0000000..c3ff973 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bluetooth-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bluetooth-thin.svg b/phosphor_orig/SVGs Flat/thin/bluetooth-thin.svg new file mode 100644 index 0000000..297ffbc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bluetooth-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bluetooth-x-thin.svg b/phosphor_orig/SVGs Flat/thin/bluetooth-x-thin.svg new file mode 100644 index 0000000..980e73d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bluetooth-x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/boat-thin.svg b/phosphor_orig/SVGs Flat/thin/boat-thin.svg new file mode 100644 index 0000000..d8d1655 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/boat-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bomb-thin.svg b/phosphor_orig/SVGs Flat/thin/bomb-thin.svg new file mode 100644 index 0000000..dfef1a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bomb-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bone-thin.svg b/phosphor_orig/SVGs Flat/thin/bone-thin.svg new file mode 100644 index 0000000..3ba31e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bone-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/book-bookmark-thin.svg b/phosphor_orig/SVGs Flat/thin/book-bookmark-thin.svg new file mode 100644 index 0000000..d2522d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/book-bookmark-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/book-open-text-thin.svg b/phosphor_orig/SVGs Flat/thin/book-open-text-thin.svg new file mode 100644 index 0000000..ffa328e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/book-open-text-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/book-open-thin.svg b/phosphor_orig/SVGs Flat/thin/book-open-thin.svg new file mode 100644 index 0000000..1fa33e8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/book-open-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/book-thin.svg b/phosphor_orig/SVGs Flat/thin/book-thin.svg new file mode 100644 index 0000000..fd4ba5b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/book-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/book-user-thin.svg b/phosphor_orig/SVGs Flat/thin/book-user-thin.svg new file mode 100644 index 0000000..6cf122f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/book-user-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bookmark-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/bookmark-simple-thin.svg new file mode 100644 index 0000000..c839077 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bookmark-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bookmark-thin.svg b/phosphor_orig/SVGs Flat/thin/bookmark-thin.svg new file mode 100644 index 0000000..a076e20 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bookmark-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bookmarks-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/bookmarks-simple-thin.svg new file mode 100644 index 0000000..81a83e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bookmarks-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bookmarks-thin.svg b/phosphor_orig/SVGs Flat/thin/bookmarks-thin.svg new file mode 100644 index 0000000..b96c671 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bookmarks-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/books-thin.svg b/phosphor_orig/SVGs Flat/thin/books-thin.svg new file mode 100644 index 0000000..52392c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/books-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/boot-thin.svg b/phosphor_orig/SVGs Flat/thin/boot-thin.svg new file mode 100644 index 0000000..75e50b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/boot-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/boules-thin.svg b/phosphor_orig/SVGs Flat/thin/boules-thin.svg new file mode 100644 index 0000000..e1f487c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/boules-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bounding-box-thin.svg b/phosphor_orig/SVGs Flat/thin/bounding-box-thin.svg new file mode 100644 index 0000000..93d2731 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bounding-box-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bowl-food-thin.svg b/phosphor_orig/SVGs Flat/thin/bowl-food-thin.svg new file mode 100644 index 0000000..1d27caf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bowl-food-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bowl-steam-thin.svg b/phosphor_orig/SVGs Flat/thin/bowl-steam-thin.svg new file mode 100644 index 0000000..12d7011 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bowl-steam-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bowling-ball-thin.svg b/phosphor_orig/SVGs Flat/thin/bowling-ball-thin.svg new file mode 100644 index 0000000..b59f415 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bowling-ball-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/box-arrow-down-thin.svg b/phosphor_orig/SVGs Flat/thin/box-arrow-down-thin.svg new file mode 100644 index 0000000..85020bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/box-arrow-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/box-arrow-up-thin.svg b/phosphor_orig/SVGs Flat/thin/box-arrow-up-thin.svg new file mode 100644 index 0000000..112d0ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/box-arrow-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/boxing-glove-thin.svg b/phosphor_orig/SVGs Flat/thin/boxing-glove-thin.svg new file mode 100644 index 0000000..51c62e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/boxing-glove-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/brackets-angle-thin.svg b/phosphor_orig/SVGs Flat/thin/brackets-angle-thin.svg new file mode 100644 index 0000000..f0035c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/brackets-angle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/brackets-curly-thin.svg b/phosphor_orig/SVGs Flat/thin/brackets-curly-thin.svg new file mode 100644 index 0000000..338cd81 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/brackets-curly-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/brackets-round-thin.svg b/phosphor_orig/SVGs Flat/thin/brackets-round-thin.svg new file mode 100644 index 0000000..fdcd4b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/brackets-round-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/brackets-square-thin.svg b/phosphor_orig/SVGs Flat/thin/brackets-square-thin.svg new file mode 100644 index 0000000..ef1e8c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/brackets-square-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/brain-thin.svg b/phosphor_orig/SVGs Flat/thin/brain-thin.svg new file mode 100644 index 0000000..1a9ac1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/brain-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/brandy-thin.svg b/phosphor_orig/SVGs Flat/thin/brandy-thin.svg new file mode 100644 index 0000000..d390e85 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/brandy-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bread-thin.svg b/phosphor_orig/SVGs Flat/thin/bread-thin.svg new file mode 100644 index 0000000..df9f115 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bread-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bridge-thin.svg b/phosphor_orig/SVGs Flat/thin/bridge-thin.svg new file mode 100644 index 0000000..4ea86fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bridge-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/briefcase-metal-thin.svg b/phosphor_orig/SVGs Flat/thin/briefcase-metal-thin.svg new file mode 100644 index 0000000..cba8f7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/briefcase-metal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/briefcase-thin.svg b/phosphor_orig/SVGs Flat/thin/briefcase-thin.svg new file mode 100644 index 0000000..bb4f368 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/briefcase-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/broadcast-thin.svg b/phosphor_orig/SVGs Flat/thin/broadcast-thin.svg new file mode 100644 index 0000000..0644622 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/broadcast-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/broom-thin.svg b/phosphor_orig/SVGs Flat/thin/broom-thin.svg new file mode 100644 index 0000000..16a170e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/broom-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/browser-thin.svg b/phosphor_orig/SVGs Flat/thin/browser-thin.svg new file mode 100644 index 0000000..68192c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/browser-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/browsers-thin.svg b/phosphor_orig/SVGs Flat/thin/browsers-thin.svg new file mode 100644 index 0000000..5c84885 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/browsers-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bug-beetle-thin.svg b/phosphor_orig/SVGs Flat/thin/bug-beetle-thin.svg new file mode 100644 index 0000000..a9449ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bug-beetle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bug-droid-thin.svg b/phosphor_orig/SVGs Flat/thin/bug-droid-thin.svg new file mode 100644 index 0000000..bc16d40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bug-droid-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bug-thin.svg b/phosphor_orig/SVGs Flat/thin/bug-thin.svg new file mode 100644 index 0000000..d4f1170 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bug-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/building-apartment-thin.svg b/phosphor_orig/SVGs Flat/thin/building-apartment-thin.svg new file mode 100644 index 0000000..906b9f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/building-apartment-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/building-office-thin.svg b/phosphor_orig/SVGs Flat/thin/building-office-thin.svg new file mode 100644 index 0000000..eb2f515 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/building-office-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/building-thin.svg b/phosphor_orig/SVGs Flat/thin/building-thin.svg new file mode 100644 index 0000000..525b3e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/building-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/buildings-thin.svg b/phosphor_orig/SVGs Flat/thin/buildings-thin.svg new file mode 100644 index 0000000..3c47f5d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/buildings-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bulldozer-thin.svg b/phosphor_orig/SVGs Flat/thin/bulldozer-thin.svg new file mode 100644 index 0000000..99b1282 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bulldozer-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/bus-thin.svg b/phosphor_orig/SVGs Flat/thin/bus-thin.svg new file mode 100644 index 0000000..cf7cbb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/bus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/butterfly-thin.svg b/phosphor_orig/SVGs Flat/thin/butterfly-thin.svg new file mode 100644 index 0000000..869898d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/butterfly-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cable-car-thin.svg b/phosphor_orig/SVGs Flat/thin/cable-car-thin.svg new file mode 100644 index 0000000..4c478cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cable-car-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cactus-thin.svg b/phosphor_orig/SVGs Flat/thin/cactus-thin.svg new file mode 100644 index 0000000..27dbc09 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cactus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cake-thin.svg b/phosphor_orig/SVGs Flat/thin/cake-thin.svg new file mode 100644 index 0000000..fba5a1b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cake-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/calculator-thin.svg b/phosphor_orig/SVGs Flat/thin/calculator-thin.svg new file mode 100644 index 0000000..09f7916 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/calculator-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/calendar-blank-thin.svg b/phosphor_orig/SVGs Flat/thin/calendar-blank-thin.svg new file mode 100644 index 0000000..88dacf9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/calendar-blank-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/calendar-check-thin.svg b/phosphor_orig/SVGs Flat/thin/calendar-check-thin.svg new file mode 100644 index 0000000..63f982c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/calendar-check-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/calendar-dot-thin.svg b/phosphor_orig/SVGs Flat/thin/calendar-dot-thin.svg new file mode 100644 index 0000000..0567592 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/calendar-dot-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/calendar-dots-thin.svg b/phosphor_orig/SVGs Flat/thin/calendar-dots-thin.svg new file mode 100644 index 0000000..c4ca9bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/calendar-dots-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/calendar-heart-thin.svg b/phosphor_orig/SVGs Flat/thin/calendar-heart-thin.svg new file mode 100644 index 0000000..082c018 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/calendar-heart-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/calendar-minus-thin.svg b/phosphor_orig/SVGs Flat/thin/calendar-minus-thin.svg new file mode 100644 index 0000000..7ed390f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/calendar-minus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/calendar-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/calendar-plus-thin.svg new file mode 100644 index 0000000..cf2a2fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/calendar-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/calendar-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/calendar-slash-thin.svg new file mode 100644 index 0000000..0084689 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/calendar-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/calendar-star-thin.svg b/phosphor_orig/SVGs Flat/thin/calendar-star-thin.svg new file mode 100644 index 0000000..4cd456a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/calendar-star-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/calendar-thin.svg b/phosphor_orig/SVGs Flat/thin/calendar-thin.svg new file mode 100644 index 0000000..a2c990b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/calendar-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/calendar-x-thin.svg b/phosphor_orig/SVGs Flat/thin/calendar-x-thin.svg new file mode 100644 index 0000000..2ee5426 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/calendar-x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/call-bell-thin.svg b/phosphor_orig/SVGs Flat/thin/call-bell-thin.svg new file mode 100644 index 0000000..944d414 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/call-bell-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/camera-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/camera-plus-thin.svg new file mode 100644 index 0000000..8374d4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/camera-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/camera-rotate-thin.svg b/phosphor_orig/SVGs Flat/thin/camera-rotate-thin.svg new file mode 100644 index 0000000..665eb08 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/camera-rotate-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/camera-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/camera-slash-thin.svg new file mode 100644 index 0000000..3101ac0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/camera-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/camera-thin.svg b/phosphor_orig/SVGs Flat/thin/camera-thin.svg new file mode 100644 index 0000000..0efd3f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/camera-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/campfire-thin.svg b/phosphor_orig/SVGs Flat/thin/campfire-thin.svg new file mode 100644 index 0000000..1005c3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/campfire-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/car-battery-thin.svg b/phosphor_orig/SVGs Flat/thin/car-battery-thin.svg new file mode 100644 index 0000000..ed69946 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/car-battery-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/car-profile-thin.svg b/phosphor_orig/SVGs Flat/thin/car-profile-thin.svg new file mode 100644 index 0000000..91e3234 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/car-profile-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/car-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/car-simple-thin.svg new file mode 100644 index 0000000..1ff8378 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/car-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/car-thin.svg b/phosphor_orig/SVGs Flat/thin/car-thin.svg new file mode 100644 index 0000000..fad5975 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/car-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cardholder-thin.svg b/phosphor_orig/SVGs Flat/thin/cardholder-thin.svg new file mode 100644 index 0000000..2fabf81 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cardholder-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cards-thin.svg b/phosphor_orig/SVGs Flat/thin/cards-thin.svg new file mode 100644 index 0000000..2ad1acd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cards-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cards-three-thin.svg b/phosphor_orig/SVGs Flat/thin/cards-three-thin.svg new file mode 100644 index 0000000..77ad338 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cards-three-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-circle-double-down-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-circle-double-down-thin.svg new file mode 100644 index 0000000..932de7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-circle-double-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-circle-double-left-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-circle-double-left-thin.svg new file mode 100644 index 0000000..f7d292f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-circle-double-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-circle-double-right-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-circle-double-right-thin.svg new file mode 100644 index 0000000..3a44089 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-circle-double-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-circle-double-up-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-circle-double-up-thin.svg new file mode 100644 index 0000000..40aeb3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-circle-double-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-circle-down-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-circle-down-thin.svg new file mode 100644 index 0000000..1452dd3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-circle-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-circle-left-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-circle-left-thin.svg new file mode 100644 index 0000000..045363c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-circle-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-circle-right-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-circle-right-thin.svg new file mode 100644 index 0000000..fca7d27 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-circle-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-circle-up-down-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-circle-up-down-thin.svg new file mode 100644 index 0000000..2209482 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-circle-up-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-circle-up-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-circle-up-thin.svg new file mode 100644 index 0000000..3e962e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-circle-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-double-down-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-double-down-thin.svg new file mode 100644 index 0000000..9586198 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-double-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-double-left-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-double-left-thin.svg new file mode 100644 index 0000000..fde785a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-double-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-double-right-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-double-right-thin.svg new file mode 100644 index 0000000..8b1e92e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-double-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-double-up-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-double-up-thin.svg new file mode 100644 index 0000000..f08d538 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-double-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-down-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-down-thin.svg new file mode 100644 index 0000000..f594097 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-left-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-left-thin.svg new file mode 100644 index 0000000..efeafbf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-line-down-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-line-down-thin.svg new file mode 100644 index 0000000..5872102 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-line-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-line-left-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-line-left-thin.svg new file mode 100644 index 0000000..d2e2c9a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-line-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-line-right-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-line-right-thin.svg new file mode 100644 index 0000000..9ee942f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-line-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-line-up-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-line-up-thin.svg new file mode 100644 index 0000000..e48c238 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-line-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-right-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-right-thin.svg new file mode 100644 index 0000000..d93b009 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-up-down-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-up-down-thin.svg new file mode 100644 index 0000000..5bac6fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-up-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/caret-up-thin.svg b/phosphor_orig/SVGs Flat/thin/caret-up-thin.svg new file mode 100644 index 0000000..eac82ce --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/caret-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/carrot-thin.svg b/phosphor_orig/SVGs Flat/thin/carrot-thin.svg new file mode 100644 index 0000000..0e7b5a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/carrot-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cash-register-thin.svg b/phosphor_orig/SVGs Flat/thin/cash-register-thin.svg new file mode 100644 index 0000000..719f738 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cash-register-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cassette-tape-thin.svg b/phosphor_orig/SVGs Flat/thin/cassette-tape-thin.svg new file mode 100644 index 0000000..7bbfdb5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cassette-tape-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/castle-turret-thin.svg b/phosphor_orig/SVGs Flat/thin/castle-turret-thin.svg new file mode 100644 index 0000000..93e06ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/castle-turret-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cat-thin.svg b/phosphor_orig/SVGs Flat/thin/cat-thin.svg new file mode 100644 index 0000000..cba0061 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cat-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cell-signal-full-thin.svg b/phosphor_orig/SVGs Flat/thin/cell-signal-full-thin.svg new file mode 100644 index 0000000..7a934ee --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cell-signal-full-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cell-signal-high-thin.svg b/phosphor_orig/SVGs Flat/thin/cell-signal-high-thin.svg new file mode 100644 index 0000000..6e4eede --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cell-signal-high-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cell-signal-low-thin.svg b/phosphor_orig/SVGs Flat/thin/cell-signal-low-thin.svg new file mode 100644 index 0000000..caebe25 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cell-signal-low-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cell-signal-medium-thin.svg b/phosphor_orig/SVGs Flat/thin/cell-signal-medium-thin.svg new file mode 100644 index 0000000..bd6d0c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cell-signal-medium-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cell-signal-none-thin.svg b/phosphor_orig/SVGs Flat/thin/cell-signal-none-thin.svg new file mode 100644 index 0000000..a0328cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cell-signal-none-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cell-signal-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/cell-signal-slash-thin.svg new file mode 100644 index 0000000..c39b228 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cell-signal-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cell-signal-x-thin.svg b/phosphor_orig/SVGs Flat/thin/cell-signal-x-thin.svg new file mode 100644 index 0000000..253d093 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cell-signal-x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cell-tower-thin.svg b/phosphor_orig/SVGs Flat/thin/cell-tower-thin.svg new file mode 100644 index 0000000..644024a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cell-tower-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/certificate-thin.svg b/phosphor_orig/SVGs Flat/thin/certificate-thin.svg new file mode 100644 index 0000000..f0f9822 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/certificate-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chair-thin.svg b/phosphor_orig/SVGs Flat/thin/chair-thin.svg new file mode 100644 index 0000000..b74e625 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chair-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chalkboard-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/chalkboard-simple-thin.svg new file mode 100644 index 0000000..6b6edba --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chalkboard-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chalkboard-teacher-thin.svg b/phosphor_orig/SVGs Flat/thin/chalkboard-teacher-thin.svg new file mode 100644 index 0000000..b4bbb62 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chalkboard-teacher-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chalkboard-thin.svg b/phosphor_orig/SVGs Flat/thin/chalkboard-thin.svg new file mode 100644 index 0000000..2617892 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chalkboard-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/champagne-thin.svg b/phosphor_orig/SVGs Flat/thin/champagne-thin.svg new file mode 100644 index 0000000..042eccc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/champagne-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/charging-station-thin.svg b/phosphor_orig/SVGs Flat/thin/charging-station-thin.svg new file mode 100644 index 0000000..b49a0df --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/charging-station-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chart-bar-horizontal-thin.svg b/phosphor_orig/SVGs Flat/thin/chart-bar-horizontal-thin.svg new file mode 100644 index 0000000..a9dbb37 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chart-bar-horizontal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chart-bar-thin.svg b/phosphor_orig/SVGs Flat/thin/chart-bar-thin.svg new file mode 100644 index 0000000..996fb3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chart-bar-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chart-donut-thin.svg b/phosphor_orig/SVGs Flat/thin/chart-donut-thin.svg new file mode 100644 index 0000000..fa9916c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chart-donut-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chart-line-down-thin.svg b/phosphor_orig/SVGs Flat/thin/chart-line-down-thin.svg new file mode 100644 index 0000000..bc535cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chart-line-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chart-line-thin.svg b/phosphor_orig/SVGs Flat/thin/chart-line-thin.svg new file mode 100644 index 0000000..adb0b1b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chart-line-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chart-line-up-thin.svg b/phosphor_orig/SVGs Flat/thin/chart-line-up-thin.svg new file mode 100644 index 0000000..7dea52c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chart-line-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chart-pie-slice-thin.svg b/phosphor_orig/SVGs Flat/thin/chart-pie-slice-thin.svg new file mode 100644 index 0000000..b57aba2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chart-pie-slice-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chart-pie-thin.svg b/phosphor_orig/SVGs Flat/thin/chart-pie-thin.svg new file mode 100644 index 0000000..df7f330 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chart-pie-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chart-polar-thin.svg b/phosphor_orig/SVGs Flat/thin/chart-polar-thin.svg new file mode 100644 index 0000000..b67ae4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chart-polar-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chart-scatter-thin.svg b/phosphor_orig/SVGs Flat/thin/chart-scatter-thin.svg new file mode 100644 index 0000000..2a8c228 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chart-scatter-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-centered-dots-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-centered-dots-thin.svg new file mode 100644 index 0000000..b691bb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-centered-dots-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-centered-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-centered-slash-thin.svg new file mode 100644 index 0000000..ff8eada --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-centered-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-centered-text-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-centered-text-thin.svg new file mode 100644 index 0000000..d10d335 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-centered-text-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-centered-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-centered-thin.svg new file mode 100644 index 0000000..9b64d04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-centered-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-circle-dots-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-circle-dots-thin.svg new file mode 100644 index 0000000..6bf8afc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-circle-dots-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-circle-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-circle-slash-thin.svg new file mode 100644 index 0000000..fdc9562 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-circle-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-circle-text-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-circle-text-thin.svg new file mode 100644 index 0000000..2262c19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-circle-text-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-circle-thin.svg new file mode 100644 index 0000000..82cbe14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-dots-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-dots-thin.svg new file mode 100644 index 0000000..ff42894 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-dots-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-slash-thin.svg new file mode 100644 index 0000000..bbbc68a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-teardrop-dots-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-teardrop-dots-thin.svg new file mode 100644 index 0000000..54c8d19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-teardrop-dots-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-teardrop-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-teardrop-slash-thin.svg new file mode 100644 index 0000000..e70f431 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-teardrop-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-teardrop-text-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-teardrop-text-thin.svg new file mode 100644 index 0000000..bd98590 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-teardrop-text-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-teardrop-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-teardrop-thin.svg new file mode 100644 index 0000000..5e736af --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-teardrop-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-text-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-text-thin.svg new file mode 100644 index 0000000..386a386 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-text-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chat-thin.svg b/phosphor_orig/SVGs Flat/thin/chat-thin.svg new file mode 100644 index 0000000..c1cdb8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chat-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chats-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/chats-circle-thin.svg new file mode 100644 index 0000000..09cd09d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chats-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chats-teardrop-thin.svg b/phosphor_orig/SVGs Flat/thin/chats-teardrop-thin.svg new file mode 100644 index 0000000..1107a3f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chats-teardrop-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chats-thin.svg b/phosphor_orig/SVGs Flat/thin/chats-thin.svg new file mode 100644 index 0000000..e7cc035 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chats-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/check-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/check-circle-thin.svg new file mode 100644 index 0000000..f3a5859 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/check-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/check-fat-thin.svg b/phosphor_orig/SVGs Flat/thin/check-fat-thin.svg new file mode 100644 index 0000000..62deeb2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/check-fat-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/check-square-offset-thin.svg b/phosphor_orig/SVGs Flat/thin/check-square-offset-thin.svg new file mode 100644 index 0000000..7187033 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/check-square-offset-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/check-square-thin.svg b/phosphor_orig/SVGs Flat/thin/check-square-thin.svg new file mode 100644 index 0000000..3dc0ac8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/check-square-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/check-thin.svg b/phosphor_orig/SVGs Flat/thin/check-thin.svg new file mode 100644 index 0000000..da82095 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/check-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/checkerboard-thin.svg b/phosphor_orig/SVGs Flat/thin/checkerboard-thin.svg new file mode 100644 index 0000000..ba151b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/checkerboard-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/checks-thin.svg b/phosphor_orig/SVGs Flat/thin/checks-thin.svg new file mode 100644 index 0000000..85b0ae1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/checks-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cheers-thin.svg b/phosphor_orig/SVGs Flat/thin/cheers-thin.svg new file mode 100644 index 0000000..737f747 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cheers-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cheese-thin.svg b/phosphor_orig/SVGs Flat/thin/cheese-thin.svg new file mode 100644 index 0000000..7a373f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cheese-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/chef-hat-thin.svg b/phosphor_orig/SVGs Flat/thin/chef-hat-thin.svg new file mode 100644 index 0000000..1c0efd1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/chef-hat-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cherries-thin.svg b/phosphor_orig/SVGs Flat/thin/cherries-thin.svg new file mode 100644 index 0000000..a1d2d98 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cherries-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/church-thin.svg b/phosphor_orig/SVGs Flat/thin/church-thin.svg new file mode 100644 index 0000000..ae45181 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/church-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cigarette-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/cigarette-slash-thin.svg new file mode 100644 index 0000000..bfba1a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cigarette-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cigarette-thin.svg b/phosphor_orig/SVGs Flat/thin/cigarette-thin.svg new file mode 100644 index 0000000..bebe274 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cigarette-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/circle-dashed-thin.svg b/phosphor_orig/SVGs Flat/thin/circle-dashed-thin.svg new file mode 100644 index 0000000..475411d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/circle-dashed-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/circle-half-thin.svg b/phosphor_orig/SVGs Flat/thin/circle-half-thin.svg new file mode 100644 index 0000000..9013641 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/circle-half-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/circle-half-tilt-thin.svg b/phosphor_orig/SVGs Flat/thin/circle-half-tilt-thin.svg new file mode 100644 index 0000000..1dc94ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/circle-half-tilt-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/circle-notch-thin.svg b/phosphor_orig/SVGs Flat/thin/circle-notch-thin.svg new file mode 100644 index 0000000..0395067 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/circle-notch-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/circle-thin.svg b/phosphor_orig/SVGs Flat/thin/circle-thin.svg new file mode 100644 index 0000000..d9d42a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/circles-four-thin.svg b/phosphor_orig/SVGs Flat/thin/circles-four-thin.svg new file mode 100644 index 0000000..ca2a82b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/circles-four-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/circles-three-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/circles-three-plus-thin.svg new file mode 100644 index 0000000..09785e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/circles-three-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/circles-three-thin.svg b/phosphor_orig/SVGs Flat/thin/circles-three-thin.svg new file mode 100644 index 0000000..742f9f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/circles-three-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/circuitry-thin.svg b/phosphor_orig/SVGs Flat/thin/circuitry-thin.svg new file mode 100644 index 0000000..eca9e79 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/circuitry-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/city-thin.svg b/phosphor_orig/SVGs Flat/thin/city-thin.svg new file mode 100644 index 0000000..f4d0124 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/city-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/clipboard-text-thin.svg b/phosphor_orig/SVGs Flat/thin/clipboard-text-thin.svg new file mode 100644 index 0000000..fcb7e48 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/clipboard-text-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/clipboard-thin.svg b/phosphor_orig/SVGs Flat/thin/clipboard-thin.svg new file mode 100644 index 0000000..ee5a06d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/clipboard-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/clock-afternoon-thin.svg b/phosphor_orig/SVGs Flat/thin/clock-afternoon-thin.svg new file mode 100644 index 0000000..4fa7e84 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/clock-afternoon-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/clock-clockwise-thin.svg b/phosphor_orig/SVGs Flat/thin/clock-clockwise-thin.svg new file mode 100644 index 0000000..aeb46f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/clock-clockwise-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/clock-countdown-thin.svg b/phosphor_orig/SVGs Flat/thin/clock-countdown-thin.svg new file mode 100644 index 0000000..f17dd3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/clock-countdown-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/clock-counter-clockwise-thin.svg b/phosphor_orig/SVGs Flat/thin/clock-counter-clockwise-thin.svg new file mode 100644 index 0000000..d57e7c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/clock-counter-clockwise-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/clock-thin.svg b/phosphor_orig/SVGs Flat/thin/clock-thin.svg new file mode 100644 index 0000000..130c33b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/clock-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/clock-user-thin.svg b/phosphor_orig/SVGs Flat/thin/clock-user-thin.svg new file mode 100644 index 0000000..96b9ff8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/clock-user-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/closed-captioning-thin.svg b/phosphor_orig/SVGs Flat/thin/closed-captioning-thin.svg new file mode 100644 index 0000000..f38bd53 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/closed-captioning-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cloud-arrow-down-thin.svg b/phosphor_orig/SVGs Flat/thin/cloud-arrow-down-thin.svg new file mode 100644 index 0000000..56f92f0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cloud-arrow-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cloud-arrow-up-thin.svg b/phosphor_orig/SVGs Flat/thin/cloud-arrow-up-thin.svg new file mode 100644 index 0000000..d8bf83d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cloud-arrow-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cloud-check-thin.svg b/phosphor_orig/SVGs Flat/thin/cloud-check-thin.svg new file mode 100644 index 0000000..373dec5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cloud-check-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cloud-fog-thin.svg b/phosphor_orig/SVGs Flat/thin/cloud-fog-thin.svg new file mode 100644 index 0000000..bc0a371 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cloud-fog-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cloud-lightning-thin.svg b/phosphor_orig/SVGs Flat/thin/cloud-lightning-thin.svg new file mode 100644 index 0000000..92294b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cloud-lightning-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cloud-moon-thin.svg b/phosphor_orig/SVGs Flat/thin/cloud-moon-thin.svg new file mode 100644 index 0000000..b74cc19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cloud-moon-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cloud-rain-thin.svg b/phosphor_orig/SVGs Flat/thin/cloud-rain-thin.svg new file mode 100644 index 0000000..ed8f439 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cloud-rain-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cloud-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/cloud-slash-thin.svg new file mode 100644 index 0000000..0d881c6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cloud-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cloud-snow-thin.svg b/phosphor_orig/SVGs Flat/thin/cloud-snow-thin.svg new file mode 100644 index 0000000..e7f006c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cloud-snow-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cloud-sun-thin.svg b/phosphor_orig/SVGs Flat/thin/cloud-sun-thin.svg new file mode 100644 index 0000000..d11d8b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cloud-sun-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cloud-thin.svg b/phosphor_orig/SVGs Flat/thin/cloud-thin.svg new file mode 100644 index 0000000..5939938 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cloud-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cloud-warning-thin.svg b/phosphor_orig/SVGs Flat/thin/cloud-warning-thin.svg new file mode 100644 index 0000000..44985be --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cloud-warning-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cloud-x-thin.svg b/phosphor_orig/SVGs Flat/thin/cloud-x-thin.svg new file mode 100644 index 0000000..0594d03 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cloud-x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/clover-thin.svg b/phosphor_orig/SVGs Flat/thin/clover-thin.svg new file mode 100644 index 0000000..dc28c1b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/clover-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/club-thin.svg b/phosphor_orig/SVGs Flat/thin/club-thin.svg new file mode 100644 index 0000000..e8eef01 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/club-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/coat-hanger-thin.svg b/phosphor_orig/SVGs Flat/thin/coat-hanger-thin.svg new file mode 100644 index 0000000..31aab07 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/coat-hanger-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/coda-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/coda-logo-thin.svg new file mode 100644 index 0000000..3ad6d56 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/coda-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/code-block-thin.svg b/phosphor_orig/SVGs Flat/thin/code-block-thin.svg new file mode 100644 index 0000000..0913ee8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/code-block-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/code-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/code-simple-thin.svg new file mode 100644 index 0000000..f43f3c6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/code-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/code-thin.svg b/phosphor_orig/SVGs Flat/thin/code-thin.svg new file mode 100644 index 0000000..d5c9686 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/code-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/codepen-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/codepen-logo-thin.svg new file mode 100644 index 0000000..8c7d883 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/codepen-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/codesandbox-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/codesandbox-logo-thin.svg new file mode 100644 index 0000000..1b53b4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/codesandbox-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/coffee-bean-thin.svg b/phosphor_orig/SVGs Flat/thin/coffee-bean-thin.svg new file mode 100644 index 0000000..b97546c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/coffee-bean-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/coffee-thin.svg b/phosphor_orig/SVGs Flat/thin/coffee-thin.svg new file mode 100644 index 0000000..367ad89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/coffee-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/coin-thin.svg b/phosphor_orig/SVGs Flat/thin/coin-thin.svg new file mode 100644 index 0000000..6578df8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/coin-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/coin-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/coin-vertical-thin.svg new file mode 100644 index 0000000..cf4f917 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/coin-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/coins-thin.svg b/phosphor_orig/SVGs Flat/thin/coins-thin.svg new file mode 100644 index 0000000..f13966c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/coins-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/columns-plus-left-thin.svg b/phosphor_orig/SVGs Flat/thin/columns-plus-left-thin.svg new file mode 100644 index 0000000..0362a5a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/columns-plus-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/columns-plus-right-thin.svg b/phosphor_orig/SVGs Flat/thin/columns-plus-right-thin.svg new file mode 100644 index 0000000..663cc96 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/columns-plus-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/columns-thin.svg b/phosphor_orig/SVGs Flat/thin/columns-thin.svg new file mode 100644 index 0000000..242c64b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/columns-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/command-thin.svg b/phosphor_orig/SVGs Flat/thin/command-thin.svg new file mode 100644 index 0000000..34a5150 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/command-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/compass-rose-thin.svg b/phosphor_orig/SVGs Flat/thin/compass-rose-thin.svg new file mode 100644 index 0000000..ad6d745 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/compass-rose-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/compass-thin.svg b/phosphor_orig/SVGs Flat/thin/compass-thin.svg new file mode 100644 index 0000000..73cb2ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/compass-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/compass-tool-thin.svg b/phosphor_orig/SVGs Flat/thin/compass-tool-thin.svg new file mode 100644 index 0000000..3faef87 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/compass-tool-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/computer-tower-thin.svg b/phosphor_orig/SVGs Flat/thin/computer-tower-thin.svg new file mode 100644 index 0000000..9f5582b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/computer-tower-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/confetti-thin.svg b/phosphor_orig/SVGs Flat/thin/confetti-thin.svg new file mode 100644 index 0000000..b2c1c7b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/confetti-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/contactless-payment-thin.svg b/phosphor_orig/SVGs Flat/thin/contactless-payment-thin.svg new file mode 100644 index 0000000..fc64b7a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/contactless-payment-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/control-thin.svg b/phosphor_orig/SVGs Flat/thin/control-thin.svg new file mode 100644 index 0000000..abf531c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/control-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cookie-thin.svg b/phosphor_orig/SVGs Flat/thin/cookie-thin.svg new file mode 100644 index 0000000..074bc96 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cookie-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cooking-pot-thin.svg b/phosphor_orig/SVGs Flat/thin/cooking-pot-thin.svg new file mode 100644 index 0000000..845c878 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cooking-pot-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/copy-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/copy-simple-thin.svg new file mode 100644 index 0000000..366aefc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/copy-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/copy-thin.svg b/phosphor_orig/SVGs Flat/thin/copy-thin.svg new file mode 100644 index 0000000..39f8c74 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/copy-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/copyleft-thin.svg b/phosphor_orig/SVGs Flat/thin/copyleft-thin.svg new file mode 100644 index 0000000..8befb7e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/copyleft-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/copyright-thin.svg b/phosphor_orig/SVGs Flat/thin/copyright-thin.svg new file mode 100644 index 0000000..491cb81 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/copyright-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/corners-in-thin.svg b/phosphor_orig/SVGs Flat/thin/corners-in-thin.svg new file mode 100644 index 0000000..4d5acd6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/corners-in-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/corners-out-thin.svg b/phosphor_orig/SVGs Flat/thin/corners-out-thin.svg new file mode 100644 index 0000000..611d642 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/corners-out-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/couch-thin.svg b/phosphor_orig/SVGs Flat/thin/couch-thin.svg new file mode 100644 index 0000000..31dbd2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/couch-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/court-basketball-thin.svg b/phosphor_orig/SVGs Flat/thin/court-basketball-thin.svg new file mode 100644 index 0000000..63d2ead --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/court-basketball-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cow-thin.svg b/phosphor_orig/SVGs Flat/thin/cow-thin.svg new file mode 100644 index 0000000..724a408 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cow-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cowboy-hat-thin.svg b/phosphor_orig/SVGs Flat/thin/cowboy-hat-thin.svg new file mode 100644 index 0000000..30c1100 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cowboy-hat-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cpu-thin.svg b/phosphor_orig/SVGs Flat/thin/cpu-thin.svg new file mode 100644 index 0000000..85820d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cpu-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/crane-thin.svg b/phosphor_orig/SVGs Flat/thin/crane-thin.svg new file mode 100644 index 0000000..7f6a54e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/crane-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/crane-tower-thin.svg b/phosphor_orig/SVGs Flat/thin/crane-tower-thin.svg new file mode 100644 index 0000000..2171ada --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/crane-tower-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/credit-card-thin.svg b/phosphor_orig/SVGs Flat/thin/credit-card-thin.svg new file mode 100644 index 0000000..1c7d766 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/credit-card-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cricket-thin.svg b/phosphor_orig/SVGs Flat/thin/cricket-thin.svg new file mode 100644 index 0000000..24c46f0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cricket-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/crop-thin.svg b/phosphor_orig/SVGs Flat/thin/crop-thin.svg new file mode 100644 index 0000000..7e777bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/crop-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cross-thin.svg b/phosphor_orig/SVGs Flat/thin/cross-thin.svg new file mode 100644 index 0000000..c997afe --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cross-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/crosshair-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/crosshair-simple-thin.svg new file mode 100644 index 0000000..7665274 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/crosshair-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/crosshair-thin.svg b/phosphor_orig/SVGs Flat/thin/crosshair-thin.svg new file mode 100644 index 0000000..29010c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/crosshair-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/crown-cross-thin.svg b/phosphor_orig/SVGs Flat/thin/crown-cross-thin.svg new file mode 100644 index 0000000..dbb7628 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/crown-cross-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/crown-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/crown-simple-thin.svg new file mode 100644 index 0000000..13b1f5a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/crown-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/crown-thin.svg b/phosphor_orig/SVGs Flat/thin/crown-thin.svg new file mode 100644 index 0000000..353ccee --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/crown-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cube-focus-thin.svg b/phosphor_orig/SVGs Flat/thin/cube-focus-thin.svg new file mode 100644 index 0000000..f1a6593 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cube-focus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cube-thin.svg b/phosphor_orig/SVGs Flat/thin/cube-thin.svg new file mode 100644 index 0000000..20d53d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cube-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cube-transparent-thin.svg b/phosphor_orig/SVGs Flat/thin/cube-transparent-thin.svg new file mode 100644 index 0000000..8f7ca49 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cube-transparent-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/currency-btc-thin.svg b/phosphor_orig/SVGs Flat/thin/currency-btc-thin.svg new file mode 100644 index 0000000..9b221df --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/currency-btc-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/currency-circle-dollar-thin.svg b/phosphor_orig/SVGs Flat/thin/currency-circle-dollar-thin.svg new file mode 100644 index 0000000..9f74841 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/currency-circle-dollar-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/currency-cny-thin.svg b/phosphor_orig/SVGs Flat/thin/currency-cny-thin.svg new file mode 100644 index 0000000..4f8add2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/currency-cny-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/currency-dollar-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/currency-dollar-simple-thin.svg new file mode 100644 index 0000000..6f16da2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/currency-dollar-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/currency-dollar-thin.svg b/phosphor_orig/SVGs Flat/thin/currency-dollar-thin.svg new file mode 100644 index 0000000..a3799df --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/currency-dollar-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/currency-eth-thin.svg b/phosphor_orig/SVGs Flat/thin/currency-eth-thin.svg new file mode 100644 index 0000000..026dd8c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/currency-eth-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/currency-eur-thin.svg b/phosphor_orig/SVGs Flat/thin/currency-eur-thin.svg new file mode 100644 index 0000000..9834d2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/currency-eur-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/currency-gbp-thin.svg b/phosphor_orig/SVGs Flat/thin/currency-gbp-thin.svg new file mode 100644 index 0000000..2fe07bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/currency-gbp-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/currency-inr-thin.svg b/phosphor_orig/SVGs Flat/thin/currency-inr-thin.svg new file mode 100644 index 0000000..94b7a4f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/currency-inr-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/currency-jpy-thin.svg b/phosphor_orig/SVGs Flat/thin/currency-jpy-thin.svg new file mode 100644 index 0000000..4b29cee --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/currency-jpy-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/currency-krw-thin.svg b/phosphor_orig/SVGs Flat/thin/currency-krw-thin.svg new file mode 100644 index 0000000..6521145 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/currency-krw-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/currency-kzt-thin.svg b/phosphor_orig/SVGs Flat/thin/currency-kzt-thin.svg new file mode 100644 index 0000000..deedbd5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/currency-kzt-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/currency-ngn-thin.svg b/phosphor_orig/SVGs Flat/thin/currency-ngn-thin.svg new file mode 100644 index 0000000..d4e69de --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/currency-ngn-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/currency-rub-thin.svg b/phosphor_orig/SVGs Flat/thin/currency-rub-thin.svg new file mode 100644 index 0000000..480ebe3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/currency-rub-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cursor-click-thin.svg b/phosphor_orig/SVGs Flat/thin/cursor-click-thin.svg new file mode 100644 index 0000000..44b1f2a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cursor-click-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cursor-text-thin.svg b/phosphor_orig/SVGs Flat/thin/cursor-text-thin.svg new file mode 100644 index 0000000..47fd3cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cursor-text-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cursor-thin.svg b/phosphor_orig/SVGs Flat/thin/cursor-thin.svg new file mode 100644 index 0000000..cc9f62f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cursor-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/cylinder-thin.svg b/phosphor_orig/SVGs Flat/thin/cylinder-thin.svg new file mode 100644 index 0000000..bb6b530 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/cylinder-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/database-thin.svg b/phosphor_orig/SVGs Flat/thin/database-thin.svg new file mode 100644 index 0000000..d458fb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/database-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/desk-thin.svg b/phosphor_orig/SVGs Flat/thin/desk-thin.svg new file mode 100644 index 0000000..27acc2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/desk-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/desktop-thin.svg b/phosphor_orig/SVGs Flat/thin/desktop-thin.svg new file mode 100644 index 0000000..76ef856 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/desktop-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/desktop-tower-thin.svg b/phosphor_orig/SVGs Flat/thin/desktop-tower-thin.svg new file mode 100644 index 0000000..6cee11b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/desktop-tower-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/detective-thin.svg b/phosphor_orig/SVGs Flat/thin/detective-thin.svg new file mode 100644 index 0000000..0f88e71 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/detective-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dev-to-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/dev-to-logo-thin.svg new file mode 100644 index 0000000..18b5535 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dev-to-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/device-mobile-camera-thin.svg b/phosphor_orig/SVGs Flat/thin/device-mobile-camera-thin.svg new file mode 100644 index 0000000..9a3bfcb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/device-mobile-camera-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/device-mobile-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/device-mobile-slash-thin.svg new file mode 100644 index 0000000..87fac0d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/device-mobile-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/device-mobile-speaker-thin.svg b/phosphor_orig/SVGs Flat/thin/device-mobile-speaker-thin.svg new file mode 100644 index 0000000..719449c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/device-mobile-speaker-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/device-mobile-thin.svg b/phosphor_orig/SVGs Flat/thin/device-mobile-thin.svg new file mode 100644 index 0000000..87cdf95 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/device-mobile-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/device-rotate-thin.svg b/phosphor_orig/SVGs Flat/thin/device-rotate-thin.svg new file mode 100644 index 0000000..58c9f66 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/device-rotate-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/device-tablet-camera-thin.svg b/phosphor_orig/SVGs Flat/thin/device-tablet-camera-thin.svg new file mode 100644 index 0000000..b111713 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/device-tablet-camera-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/device-tablet-speaker-thin.svg b/phosphor_orig/SVGs Flat/thin/device-tablet-speaker-thin.svg new file mode 100644 index 0000000..80756e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/device-tablet-speaker-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/device-tablet-thin.svg b/phosphor_orig/SVGs Flat/thin/device-tablet-thin.svg new file mode 100644 index 0000000..a303644 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/device-tablet-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/devices-thin.svg b/phosphor_orig/SVGs Flat/thin/devices-thin.svg new file mode 100644 index 0000000..c1b1f6c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/devices-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/diamond-thin.svg b/phosphor_orig/SVGs Flat/thin/diamond-thin.svg new file mode 100644 index 0000000..96de3d0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/diamond-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/diamonds-four-thin.svg b/phosphor_orig/SVGs Flat/thin/diamonds-four-thin.svg new file mode 100644 index 0000000..0bed55d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/diamonds-four-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dice-five-thin.svg b/phosphor_orig/SVGs Flat/thin/dice-five-thin.svg new file mode 100644 index 0000000..f552325 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dice-five-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dice-four-thin.svg b/phosphor_orig/SVGs Flat/thin/dice-four-thin.svg new file mode 100644 index 0000000..82855eb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dice-four-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dice-one-thin.svg b/phosphor_orig/SVGs Flat/thin/dice-one-thin.svg new file mode 100644 index 0000000..b1db65f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dice-one-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dice-six-thin.svg b/phosphor_orig/SVGs Flat/thin/dice-six-thin.svg new file mode 100644 index 0000000..791cba5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dice-six-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dice-three-thin.svg b/phosphor_orig/SVGs Flat/thin/dice-three-thin.svg new file mode 100644 index 0000000..7f3dfc3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dice-three-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dice-two-thin.svg b/phosphor_orig/SVGs Flat/thin/dice-two-thin.svg new file mode 100644 index 0000000..9d8109d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dice-two-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/disc-thin.svg b/phosphor_orig/SVGs Flat/thin/disc-thin.svg new file mode 100644 index 0000000..9d5b8af --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/disc-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/disco-ball-thin.svg b/phosphor_orig/SVGs Flat/thin/disco-ball-thin.svg new file mode 100644 index 0000000..3110972 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/disco-ball-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/discord-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/discord-logo-thin.svg new file mode 100644 index 0000000..bafa08d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/discord-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/divide-thin.svg b/phosphor_orig/SVGs Flat/thin/divide-thin.svg new file mode 100644 index 0000000..2261003 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/divide-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dna-thin.svg b/phosphor_orig/SVGs Flat/thin/dna-thin.svg new file mode 100644 index 0000000..5aee9aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dna-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dog-thin.svg b/phosphor_orig/SVGs Flat/thin/dog-thin.svg new file mode 100644 index 0000000..e579690 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dog-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/door-open-thin.svg b/phosphor_orig/SVGs Flat/thin/door-open-thin.svg new file mode 100644 index 0000000..836b3c2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/door-open-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/door-thin.svg b/phosphor_orig/SVGs Flat/thin/door-thin.svg new file mode 100644 index 0000000..8452341 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/door-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dot-outline-thin.svg b/phosphor_orig/SVGs Flat/thin/dot-outline-thin.svg new file mode 100644 index 0000000..164b93d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dot-outline-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dot-thin.svg b/phosphor_orig/SVGs Flat/thin/dot-thin.svg new file mode 100644 index 0000000..31bbc34 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dot-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dots-nine-thin.svg b/phosphor_orig/SVGs Flat/thin/dots-nine-thin.svg new file mode 100644 index 0000000..003bb89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dots-nine-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dots-six-thin.svg b/phosphor_orig/SVGs Flat/thin/dots-six-thin.svg new file mode 100644 index 0000000..be78c46 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dots-six-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dots-six-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/dots-six-vertical-thin.svg new file mode 100644 index 0000000..fbda8a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dots-six-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dots-three-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/dots-three-circle-thin.svg new file mode 100644 index 0000000..7e022ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dots-three-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dots-three-circle-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/dots-three-circle-vertical-thin.svg new file mode 100644 index 0000000..9333188 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dots-three-circle-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dots-three-outline-thin.svg b/phosphor_orig/SVGs Flat/thin/dots-three-outline-thin.svg new file mode 100644 index 0000000..29f79f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dots-three-outline-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dots-three-outline-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/dots-three-outline-vertical-thin.svg new file mode 100644 index 0000000..6a829d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dots-three-outline-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dots-three-thin.svg b/phosphor_orig/SVGs Flat/thin/dots-three-thin.svg new file mode 100644 index 0000000..94a8068 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dots-three-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dots-three-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/dots-three-vertical-thin.svg new file mode 100644 index 0000000..988eae1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dots-three-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/download-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/download-simple-thin.svg new file mode 100644 index 0000000..b602c2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/download-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/download-thin.svg b/phosphor_orig/SVGs Flat/thin/download-thin.svg new file mode 100644 index 0000000..e214a1b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/download-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dress-thin.svg b/phosphor_orig/SVGs Flat/thin/dress-thin.svg new file mode 100644 index 0000000..aac329f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dress-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dresser-thin.svg b/phosphor_orig/SVGs Flat/thin/dresser-thin.svg new file mode 100644 index 0000000..25e3cc8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dresser-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dribbble-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/dribbble-logo-thin.svg new file mode 100644 index 0000000..1822108 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dribbble-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/drone-thin.svg b/phosphor_orig/SVGs Flat/thin/drone-thin.svg new file mode 100644 index 0000000..28b422c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/drone-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/drop-half-bottom-thin.svg b/phosphor_orig/SVGs Flat/thin/drop-half-bottom-thin.svg new file mode 100644 index 0000000..5e958d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/drop-half-bottom-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/drop-half-thin.svg b/phosphor_orig/SVGs Flat/thin/drop-half-thin.svg new file mode 100644 index 0000000..e63f822 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/drop-half-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/drop-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/drop-simple-thin.svg new file mode 100644 index 0000000..cf9724f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/drop-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/drop-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/drop-slash-thin.svg new file mode 100644 index 0000000..20ae739 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/drop-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/drop-thin.svg b/phosphor_orig/SVGs Flat/thin/drop-thin.svg new file mode 100644 index 0000000..be04811 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/drop-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/dropbox-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/dropbox-logo-thin.svg new file mode 100644 index 0000000..982be53 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/dropbox-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/ear-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/ear-slash-thin.svg new file mode 100644 index 0000000..28b895e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/ear-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/ear-thin.svg b/phosphor_orig/SVGs Flat/thin/ear-thin.svg new file mode 100644 index 0000000..21f9fc7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/ear-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/egg-crack-thin.svg b/phosphor_orig/SVGs Flat/thin/egg-crack-thin.svg new file mode 100644 index 0000000..197b64e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/egg-crack-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/egg-thin.svg b/phosphor_orig/SVGs Flat/thin/egg-thin.svg new file mode 100644 index 0000000..760882e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/egg-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/eject-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/eject-simple-thin.svg new file mode 100644 index 0000000..7e0116e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/eject-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/eject-thin.svg b/phosphor_orig/SVGs Flat/thin/eject-thin.svg new file mode 100644 index 0000000..53fd039 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/eject-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/elevator-thin.svg b/phosphor_orig/SVGs Flat/thin/elevator-thin.svg new file mode 100644 index 0000000..fc2b864 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/elevator-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/empty-thin.svg b/phosphor_orig/SVGs Flat/thin/empty-thin.svg new file mode 100644 index 0000000..b62786a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/empty-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/engine-thin.svg b/phosphor_orig/SVGs Flat/thin/engine-thin.svg new file mode 100644 index 0000000..24d7470 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/engine-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/envelope-open-thin.svg b/phosphor_orig/SVGs Flat/thin/envelope-open-thin.svg new file mode 100644 index 0000000..31a5a51 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/envelope-open-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/envelope-simple-open-thin.svg b/phosphor_orig/SVGs Flat/thin/envelope-simple-open-thin.svg new file mode 100644 index 0000000..bdafefc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/envelope-simple-open-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/envelope-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/envelope-simple-thin.svg new file mode 100644 index 0000000..e42d61b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/envelope-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/envelope-thin.svg b/phosphor_orig/SVGs Flat/thin/envelope-thin.svg new file mode 100644 index 0000000..2ef3127 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/envelope-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/equalizer-thin.svg b/phosphor_orig/SVGs Flat/thin/equalizer-thin.svg new file mode 100644 index 0000000..336af1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/equalizer-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/equals-thin.svg b/phosphor_orig/SVGs Flat/thin/equals-thin.svg new file mode 100644 index 0000000..ee57887 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/equals-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/eraser-thin.svg b/phosphor_orig/SVGs Flat/thin/eraser-thin.svg new file mode 100644 index 0000000..58526e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/eraser-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/escalator-down-thin.svg b/phosphor_orig/SVGs Flat/thin/escalator-down-thin.svg new file mode 100644 index 0000000..afc0c00 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/escalator-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/escalator-up-thin.svg b/phosphor_orig/SVGs Flat/thin/escalator-up-thin.svg new file mode 100644 index 0000000..b710863 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/escalator-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/exam-thin.svg b/phosphor_orig/SVGs Flat/thin/exam-thin.svg new file mode 100644 index 0000000..e8fdad5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/exam-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/exclamation-mark-thin.svg b/phosphor_orig/SVGs Flat/thin/exclamation-mark-thin.svg new file mode 100644 index 0000000..c6b0b66 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/exclamation-mark-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/exclude-square-thin.svg b/phosphor_orig/SVGs Flat/thin/exclude-square-thin.svg new file mode 100644 index 0000000..0d3de85 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/exclude-square-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/exclude-thin.svg b/phosphor_orig/SVGs Flat/thin/exclude-thin.svg new file mode 100644 index 0000000..233adf1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/exclude-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/export-thin.svg b/phosphor_orig/SVGs Flat/thin/export-thin.svg new file mode 100644 index 0000000..a65164a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/export-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/eye-closed-thin.svg b/phosphor_orig/SVGs Flat/thin/eye-closed-thin.svg new file mode 100644 index 0000000..72d9c97 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/eye-closed-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/eye-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/eye-slash-thin.svg new file mode 100644 index 0000000..6f0370d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/eye-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/eye-thin.svg b/phosphor_orig/SVGs Flat/thin/eye-thin.svg new file mode 100644 index 0000000..5561b8b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/eye-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/eyedropper-sample-thin.svg b/phosphor_orig/SVGs Flat/thin/eyedropper-sample-thin.svg new file mode 100644 index 0000000..64da9e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/eyedropper-sample-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/eyedropper-thin.svg b/phosphor_orig/SVGs Flat/thin/eyedropper-thin.svg new file mode 100644 index 0000000..f4d6abe --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/eyedropper-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/eyeglasses-thin.svg b/phosphor_orig/SVGs Flat/thin/eyeglasses-thin.svg new file mode 100644 index 0000000..cc719dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/eyeglasses-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/eyes-thin.svg b/phosphor_orig/SVGs Flat/thin/eyes-thin.svg new file mode 100644 index 0000000..3f7c291 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/eyes-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/face-mask-thin.svg b/phosphor_orig/SVGs Flat/thin/face-mask-thin.svg new file mode 100644 index 0000000..5bf089f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/face-mask-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/facebook-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/facebook-logo-thin.svg new file mode 100644 index 0000000..d58441f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/facebook-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/factory-thin.svg b/phosphor_orig/SVGs Flat/thin/factory-thin.svg new file mode 100644 index 0000000..ee7a844 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/factory-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/faders-horizontal-thin.svg b/phosphor_orig/SVGs Flat/thin/faders-horizontal-thin.svg new file mode 100644 index 0000000..572c807 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/faders-horizontal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/faders-thin.svg b/phosphor_orig/SVGs Flat/thin/faders-thin.svg new file mode 100644 index 0000000..2e441cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/faders-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/fallout-shelter-thin.svg b/phosphor_orig/SVGs Flat/thin/fallout-shelter-thin.svg new file mode 100644 index 0000000..cfaba40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/fallout-shelter-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/fan-thin.svg b/phosphor_orig/SVGs Flat/thin/fan-thin.svg new file mode 100644 index 0000000..8e742c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/fan-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/farm-thin.svg b/phosphor_orig/SVGs Flat/thin/farm-thin.svg new file mode 100644 index 0000000..f3014d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/farm-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/fast-forward-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/fast-forward-circle-thin.svg new file mode 100644 index 0000000..4eba852 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/fast-forward-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/fast-forward-thin.svg b/phosphor_orig/SVGs Flat/thin/fast-forward-thin.svg new file mode 100644 index 0000000..bd7afe8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/fast-forward-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/feather-thin.svg b/phosphor_orig/SVGs Flat/thin/feather-thin.svg new file mode 100644 index 0000000..929d927 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/feather-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/fediverse-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/fediverse-logo-thin.svg new file mode 100644 index 0000000..b698d02 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/fediverse-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/figma-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/figma-logo-thin.svg new file mode 100644 index 0000000..b89b643 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/figma-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-archive-thin.svg b/phosphor_orig/SVGs Flat/thin/file-archive-thin.svg new file mode 100644 index 0000000..b573c5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-archive-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-arrow-down-thin.svg b/phosphor_orig/SVGs Flat/thin/file-arrow-down-thin.svg new file mode 100644 index 0000000..f8729ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-arrow-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-arrow-up-thin.svg b/phosphor_orig/SVGs Flat/thin/file-arrow-up-thin.svg new file mode 100644 index 0000000..8576517 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-arrow-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-audio-thin.svg b/phosphor_orig/SVGs Flat/thin/file-audio-thin.svg new file mode 100644 index 0000000..9f7ad23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-audio-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-c-sharp-thin.svg b/phosphor_orig/SVGs Flat/thin/file-c-sharp-thin.svg new file mode 100644 index 0000000..7a808c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-c-sharp-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-c-thin.svg b/phosphor_orig/SVGs Flat/thin/file-c-thin.svg new file mode 100644 index 0000000..00e776c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-c-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-cloud-thin.svg b/phosphor_orig/SVGs Flat/thin/file-cloud-thin.svg new file mode 100644 index 0000000..88f6f6d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-cloud-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-code-thin.svg b/phosphor_orig/SVGs Flat/thin/file-code-thin.svg new file mode 100644 index 0000000..c7542db --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-code-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-cpp-thin.svg b/phosphor_orig/SVGs Flat/thin/file-cpp-thin.svg new file mode 100644 index 0000000..122cc64 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-cpp-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-css-thin.svg b/phosphor_orig/SVGs Flat/thin/file-css-thin.svg new file mode 100644 index 0000000..ed95f1c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-css-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-csv-thin.svg b/phosphor_orig/SVGs Flat/thin/file-csv-thin.svg new file mode 100644 index 0000000..b1dc3d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-csv-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-dashed-thin.svg b/phosphor_orig/SVGs Flat/thin/file-dashed-thin.svg new file mode 100644 index 0000000..f6d772c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-dashed-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-doc-thin.svg b/phosphor_orig/SVGs Flat/thin/file-doc-thin.svg new file mode 100644 index 0000000..2760071 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-doc-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-html-thin.svg b/phosphor_orig/SVGs Flat/thin/file-html-thin.svg new file mode 100644 index 0000000..f8f53fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-html-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-image-thin.svg b/phosphor_orig/SVGs Flat/thin/file-image-thin.svg new file mode 100644 index 0000000..6223438 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-image-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-ini-thin.svg b/phosphor_orig/SVGs Flat/thin/file-ini-thin.svg new file mode 100644 index 0000000..4435f7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-ini-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-jpg-thin.svg b/phosphor_orig/SVGs Flat/thin/file-jpg-thin.svg new file mode 100644 index 0000000..31d3068 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-jpg-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-js-thin.svg b/phosphor_orig/SVGs Flat/thin/file-js-thin.svg new file mode 100644 index 0000000..f41c5f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-js-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-jsx-thin.svg b/phosphor_orig/SVGs Flat/thin/file-jsx-thin.svg new file mode 100644 index 0000000..7b12ee5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-jsx-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-lock-thin.svg b/phosphor_orig/SVGs Flat/thin/file-lock-thin.svg new file mode 100644 index 0000000..3daf787 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-lock-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-magnifying-glass-thin.svg b/phosphor_orig/SVGs Flat/thin/file-magnifying-glass-thin.svg new file mode 100644 index 0000000..a91c0ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-magnifying-glass-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-md-thin.svg b/phosphor_orig/SVGs Flat/thin/file-md-thin.svg new file mode 100644 index 0000000..516f21e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-md-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-minus-thin.svg b/phosphor_orig/SVGs Flat/thin/file-minus-thin.svg new file mode 100644 index 0000000..9c6bebe --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-minus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-pdf-thin.svg b/phosphor_orig/SVGs Flat/thin/file-pdf-thin.svg new file mode 100644 index 0000000..566841a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-pdf-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/file-plus-thin.svg new file mode 100644 index 0000000..fb0ee4c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-png-thin.svg b/phosphor_orig/SVGs Flat/thin/file-png-thin.svg new file mode 100644 index 0000000..b45857b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-png-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-ppt-thin.svg b/phosphor_orig/SVGs Flat/thin/file-ppt-thin.svg new file mode 100644 index 0000000..2464022 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-ppt-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-py-thin.svg b/phosphor_orig/SVGs Flat/thin/file-py-thin.svg new file mode 100644 index 0000000..f618bce --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-py-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-rs-thin.svg b/phosphor_orig/SVGs Flat/thin/file-rs-thin.svg new file mode 100644 index 0000000..4a72811 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-rs-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-sql-thin.svg b/phosphor_orig/SVGs Flat/thin/file-sql-thin.svg new file mode 100644 index 0000000..5a03a2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-sql-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-svg-thin.svg b/phosphor_orig/SVGs Flat/thin/file-svg-thin.svg new file mode 100644 index 0000000..d193844 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-svg-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-text-thin.svg b/phosphor_orig/SVGs Flat/thin/file-text-thin.svg new file mode 100644 index 0000000..d66467f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-text-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-thin.svg b/phosphor_orig/SVGs Flat/thin/file-thin.svg new file mode 100644 index 0000000..6328d04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-ts-thin.svg b/phosphor_orig/SVGs Flat/thin/file-ts-thin.svg new file mode 100644 index 0000000..a0019f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-ts-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-tsx-thin.svg b/phosphor_orig/SVGs Flat/thin/file-tsx-thin.svg new file mode 100644 index 0000000..4c81f78 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-tsx-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-txt-thin.svg b/phosphor_orig/SVGs Flat/thin/file-txt-thin.svg new file mode 100644 index 0000000..4ae7bd3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-txt-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-video-thin.svg b/phosphor_orig/SVGs Flat/thin/file-video-thin.svg new file mode 100644 index 0000000..d7b2481 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-video-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-vue-thin.svg b/phosphor_orig/SVGs Flat/thin/file-vue-thin.svg new file mode 100644 index 0000000..8d3d008 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-vue-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-x-thin.svg b/phosphor_orig/SVGs Flat/thin/file-x-thin.svg new file mode 100644 index 0000000..1b41a93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-xls-thin.svg b/phosphor_orig/SVGs Flat/thin/file-xls-thin.svg new file mode 100644 index 0000000..9e4a9e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-xls-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/file-zip-thin.svg b/phosphor_orig/SVGs Flat/thin/file-zip-thin.svg new file mode 100644 index 0000000..13ce815 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/file-zip-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/files-thin.svg b/phosphor_orig/SVGs Flat/thin/files-thin.svg new file mode 100644 index 0000000..fdc4689 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/files-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/film-reel-thin.svg b/phosphor_orig/SVGs Flat/thin/film-reel-thin.svg new file mode 100644 index 0000000..76548c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/film-reel-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/film-script-thin.svg b/phosphor_orig/SVGs Flat/thin/film-script-thin.svg new file mode 100644 index 0000000..7e98273 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/film-script-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/film-slate-thin.svg b/phosphor_orig/SVGs Flat/thin/film-slate-thin.svg new file mode 100644 index 0000000..722221c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/film-slate-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/film-strip-thin.svg b/phosphor_orig/SVGs Flat/thin/film-strip-thin.svg new file mode 100644 index 0000000..45c3125 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/film-strip-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/fingerprint-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/fingerprint-simple-thin.svg new file mode 100644 index 0000000..7784045 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/fingerprint-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/fingerprint-thin.svg b/phosphor_orig/SVGs Flat/thin/fingerprint-thin.svg new file mode 100644 index 0000000..b076540 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/fingerprint-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/finn-the-human-thin.svg b/phosphor_orig/SVGs Flat/thin/finn-the-human-thin.svg new file mode 100644 index 0000000..4719002 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/finn-the-human-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/fire-extinguisher-thin.svg b/phosphor_orig/SVGs Flat/thin/fire-extinguisher-thin.svg new file mode 100644 index 0000000..c55cd6f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/fire-extinguisher-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/fire-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/fire-simple-thin.svg new file mode 100644 index 0000000..69d80ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/fire-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/fire-thin.svg b/phosphor_orig/SVGs Flat/thin/fire-thin.svg new file mode 100644 index 0000000..4626254 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/fire-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/fire-truck-thin.svg b/phosphor_orig/SVGs Flat/thin/fire-truck-thin.svg new file mode 100644 index 0000000..922b869 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/fire-truck-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/first-aid-kit-thin.svg b/phosphor_orig/SVGs Flat/thin/first-aid-kit-thin.svg new file mode 100644 index 0000000..3b959ed --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/first-aid-kit-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/first-aid-thin.svg b/phosphor_orig/SVGs Flat/thin/first-aid-thin.svg new file mode 100644 index 0000000..2c2f432 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/first-aid-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/fish-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/fish-simple-thin.svg new file mode 100644 index 0000000..bfb3754 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/fish-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/fish-thin.svg b/phosphor_orig/SVGs Flat/thin/fish-thin.svg new file mode 100644 index 0000000..f0d12b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/fish-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/flag-banner-fold-thin.svg b/phosphor_orig/SVGs Flat/thin/flag-banner-fold-thin.svg new file mode 100644 index 0000000..9ed0026 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/flag-banner-fold-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/flag-banner-thin.svg b/phosphor_orig/SVGs Flat/thin/flag-banner-thin.svg new file mode 100644 index 0000000..c761e21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/flag-banner-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/flag-checkered-thin.svg b/phosphor_orig/SVGs Flat/thin/flag-checkered-thin.svg new file mode 100644 index 0000000..3cd138d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/flag-checkered-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/flag-pennant-thin.svg b/phosphor_orig/SVGs Flat/thin/flag-pennant-thin.svg new file mode 100644 index 0000000..7035b50 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/flag-pennant-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/flag-thin.svg b/phosphor_orig/SVGs Flat/thin/flag-thin.svg new file mode 100644 index 0000000..669a6d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/flag-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/flame-thin.svg b/phosphor_orig/SVGs Flat/thin/flame-thin.svg new file mode 100644 index 0000000..7b5fc33 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/flame-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/flashlight-thin.svg b/phosphor_orig/SVGs Flat/thin/flashlight-thin.svg new file mode 100644 index 0000000..bd859c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/flashlight-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/flask-thin.svg b/phosphor_orig/SVGs Flat/thin/flask-thin.svg new file mode 100644 index 0000000..aa21925 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/flask-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/flip-horizontal-thin.svg b/phosphor_orig/SVGs Flat/thin/flip-horizontal-thin.svg new file mode 100644 index 0000000..15f822c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/flip-horizontal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/flip-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/flip-vertical-thin.svg new file mode 100644 index 0000000..21acf98 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/flip-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/floppy-disk-back-thin.svg b/phosphor_orig/SVGs Flat/thin/floppy-disk-back-thin.svg new file mode 100644 index 0000000..d1ab30a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/floppy-disk-back-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/floppy-disk-thin.svg b/phosphor_orig/SVGs Flat/thin/floppy-disk-thin.svg new file mode 100644 index 0000000..ed2c1fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/floppy-disk-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/flow-arrow-thin.svg b/phosphor_orig/SVGs Flat/thin/flow-arrow-thin.svg new file mode 100644 index 0000000..86d038e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/flow-arrow-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/flower-lotus-thin.svg b/phosphor_orig/SVGs Flat/thin/flower-lotus-thin.svg new file mode 100644 index 0000000..ab5b573 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/flower-lotus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/flower-thin.svg b/phosphor_orig/SVGs Flat/thin/flower-thin.svg new file mode 100644 index 0000000..efba26e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/flower-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/flower-tulip-thin.svg b/phosphor_orig/SVGs Flat/thin/flower-tulip-thin.svg new file mode 100644 index 0000000..b6944bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/flower-tulip-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/flying-saucer-thin.svg b/phosphor_orig/SVGs Flat/thin/flying-saucer-thin.svg new file mode 100644 index 0000000..fb397fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/flying-saucer-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folder-dashed-thin.svg b/phosphor_orig/SVGs Flat/thin/folder-dashed-thin.svg new file mode 100644 index 0000000..38d9f21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folder-dashed-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folder-lock-thin.svg b/phosphor_orig/SVGs Flat/thin/folder-lock-thin.svg new file mode 100644 index 0000000..84acdd5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folder-lock-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folder-minus-thin.svg b/phosphor_orig/SVGs Flat/thin/folder-minus-thin.svg new file mode 100644 index 0000000..86d9479 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folder-minus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folder-open-thin.svg b/phosphor_orig/SVGs Flat/thin/folder-open-thin.svg new file mode 100644 index 0000000..3f0de30 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folder-open-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folder-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/folder-plus-thin.svg new file mode 100644 index 0000000..3673082 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folder-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folder-simple-dashed-thin.svg b/phosphor_orig/SVGs Flat/thin/folder-simple-dashed-thin.svg new file mode 100644 index 0000000..8d0fe90 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folder-simple-dashed-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folder-simple-lock-thin.svg b/phosphor_orig/SVGs Flat/thin/folder-simple-lock-thin.svg new file mode 100644 index 0000000..1386291 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folder-simple-lock-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folder-simple-minus-thin.svg b/phosphor_orig/SVGs Flat/thin/folder-simple-minus-thin.svg new file mode 100644 index 0000000..00cfa42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folder-simple-minus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folder-simple-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/folder-simple-plus-thin.svg new file mode 100644 index 0000000..41fc2be --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folder-simple-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folder-simple-star-thin.svg b/phosphor_orig/SVGs Flat/thin/folder-simple-star-thin.svg new file mode 100644 index 0000000..2cccf5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folder-simple-star-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folder-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/folder-simple-thin.svg new file mode 100644 index 0000000..b03a880 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folder-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folder-simple-user-thin.svg b/phosphor_orig/SVGs Flat/thin/folder-simple-user-thin.svg new file mode 100644 index 0000000..48e7316 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folder-simple-user-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folder-star-thin.svg b/phosphor_orig/SVGs Flat/thin/folder-star-thin.svg new file mode 100644 index 0000000..8d657f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folder-star-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folder-thin.svg b/phosphor_orig/SVGs Flat/thin/folder-thin.svg new file mode 100644 index 0000000..7bb818d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folder-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folder-user-thin.svg b/phosphor_orig/SVGs Flat/thin/folder-user-thin.svg new file mode 100644 index 0000000..20ee6b7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folder-user-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/folders-thin.svg b/phosphor_orig/SVGs Flat/thin/folders-thin.svg new file mode 100644 index 0000000..c9308df --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/folders-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/football-helmet-thin.svg b/phosphor_orig/SVGs Flat/thin/football-helmet-thin.svg new file mode 100644 index 0000000..9bf3b79 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/football-helmet-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/football-thin.svg b/phosphor_orig/SVGs Flat/thin/football-thin.svg new file mode 100644 index 0000000..b523572 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/football-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/footprints-thin.svg b/phosphor_orig/SVGs Flat/thin/footprints-thin.svg new file mode 100644 index 0000000..32f0630 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/footprints-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/fork-knife-thin.svg b/phosphor_orig/SVGs Flat/thin/fork-knife-thin.svg new file mode 100644 index 0000000..e6967a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/fork-knife-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/four-k-thin.svg b/phosphor_orig/SVGs Flat/thin/four-k-thin.svg new file mode 100644 index 0000000..930d32c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/four-k-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/frame-corners-thin.svg b/phosphor_orig/SVGs Flat/thin/frame-corners-thin.svg new file mode 100644 index 0000000..83e3120 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/frame-corners-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/framer-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/framer-logo-thin.svg new file mode 100644 index 0000000..2816d0a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/framer-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/function-thin.svg b/phosphor_orig/SVGs Flat/thin/function-thin.svg new file mode 100644 index 0000000..306a32b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/function-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/funnel-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/funnel-simple-thin.svg new file mode 100644 index 0000000..296cf49 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/funnel-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/funnel-simple-x-thin.svg b/phosphor_orig/SVGs Flat/thin/funnel-simple-x-thin.svg new file mode 100644 index 0000000..9fdcc7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/funnel-simple-x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/funnel-thin.svg b/phosphor_orig/SVGs Flat/thin/funnel-thin.svg new file mode 100644 index 0000000..e3bda9f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/funnel-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/funnel-x-thin.svg b/phosphor_orig/SVGs Flat/thin/funnel-x-thin.svg new file mode 100644 index 0000000..0cf8d20 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/funnel-x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/game-controller-thin.svg b/phosphor_orig/SVGs Flat/thin/game-controller-thin.svg new file mode 100644 index 0000000..3121e38 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/game-controller-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/garage-thin.svg b/phosphor_orig/SVGs Flat/thin/garage-thin.svg new file mode 100644 index 0000000..6e7d9d6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/garage-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gas-can-thin.svg b/phosphor_orig/SVGs Flat/thin/gas-can-thin.svg new file mode 100644 index 0000000..9fd1214 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gas-can-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gas-pump-thin.svg b/phosphor_orig/SVGs Flat/thin/gas-pump-thin.svg new file mode 100644 index 0000000..86ff1a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gas-pump-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gauge-thin.svg b/phosphor_orig/SVGs Flat/thin/gauge-thin.svg new file mode 100644 index 0000000..c9fa4cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gauge-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gavel-thin.svg b/phosphor_orig/SVGs Flat/thin/gavel-thin.svg new file mode 100644 index 0000000..70884fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gavel-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gear-fine-thin.svg b/phosphor_orig/SVGs Flat/thin/gear-fine-thin.svg new file mode 100644 index 0000000..8897811 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gear-fine-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gear-six-thin.svg b/phosphor_orig/SVGs Flat/thin/gear-six-thin.svg new file mode 100644 index 0000000..ec28fff --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gear-six-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gear-thin.svg b/phosphor_orig/SVGs Flat/thin/gear-thin.svg new file mode 100644 index 0000000..162c86b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gear-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gender-female-thin.svg b/phosphor_orig/SVGs Flat/thin/gender-female-thin.svg new file mode 100644 index 0000000..1fe93a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gender-female-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gender-intersex-thin.svg b/phosphor_orig/SVGs Flat/thin/gender-intersex-thin.svg new file mode 100644 index 0000000..98994e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gender-intersex-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gender-male-thin.svg b/phosphor_orig/SVGs Flat/thin/gender-male-thin.svg new file mode 100644 index 0000000..e6d2180 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gender-male-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gender-neuter-thin.svg b/phosphor_orig/SVGs Flat/thin/gender-neuter-thin.svg new file mode 100644 index 0000000..97823f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gender-neuter-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gender-nonbinary-thin.svg b/phosphor_orig/SVGs Flat/thin/gender-nonbinary-thin.svg new file mode 100644 index 0000000..503021b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gender-nonbinary-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gender-transgender-thin.svg b/phosphor_orig/SVGs Flat/thin/gender-transgender-thin.svg new file mode 100644 index 0000000..63e03d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gender-transgender-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/ghost-thin.svg b/phosphor_orig/SVGs Flat/thin/ghost-thin.svg new file mode 100644 index 0000000..80e2b3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/ghost-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gif-thin.svg b/phosphor_orig/SVGs Flat/thin/gif-thin.svg new file mode 100644 index 0000000..4308ab8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gif-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gift-thin.svg b/phosphor_orig/SVGs Flat/thin/gift-thin.svg new file mode 100644 index 0000000..5e2d49f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gift-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/git-branch-thin.svg b/phosphor_orig/SVGs Flat/thin/git-branch-thin.svg new file mode 100644 index 0000000..7615f23 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/git-branch-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/git-commit-thin.svg b/phosphor_orig/SVGs Flat/thin/git-commit-thin.svg new file mode 100644 index 0000000..1ed7898 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/git-commit-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/git-diff-thin.svg b/phosphor_orig/SVGs Flat/thin/git-diff-thin.svg new file mode 100644 index 0000000..a3a3bb4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/git-diff-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/git-fork-thin.svg b/phosphor_orig/SVGs Flat/thin/git-fork-thin.svg new file mode 100644 index 0000000..4e7437d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/git-fork-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/git-merge-thin.svg b/phosphor_orig/SVGs Flat/thin/git-merge-thin.svg new file mode 100644 index 0000000..49bf67d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/git-merge-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/git-pull-request-thin.svg b/phosphor_orig/SVGs Flat/thin/git-pull-request-thin.svg new file mode 100644 index 0000000..65a19d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/git-pull-request-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/github-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/github-logo-thin.svg new file mode 100644 index 0000000..6a6262f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/github-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gitlab-logo-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/gitlab-logo-simple-thin.svg new file mode 100644 index 0000000..37015b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gitlab-logo-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gitlab-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/gitlab-logo-thin.svg new file mode 100644 index 0000000..1fafe43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gitlab-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/globe-hemisphere-east-thin.svg b/phosphor_orig/SVGs Flat/thin/globe-hemisphere-east-thin.svg new file mode 100644 index 0000000..8ce4ae5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/globe-hemisphere-east-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/globe-hemisphere-west-thin.svg b/phosphor_orig/SVGs Flat/thin/globe-hemisphere-west-thin.svg new file mode 100644 index 0000000..7b55eaf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/globe-hemisphere-west-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/globe-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/globe-simple-thin.svg new file mode 100644 index 0000000..f1008ff --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/globe-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/globe-simple-x-thin.svg b/phosphor_orig/SVGs Flat/thin/globe-simple-x-thin.svg new file mode 100644 index 0000000..6ad7e41 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/globe-simple-x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/globe-stand-thin.svg b/phosphor_orig/SVGs Flat/thin/globe-stand-thin.svg new file mode 100644 index 0000000..01f058d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/globe-stand-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/globe-thin.svg b/phosphor_orig/SVGs Flat/thin/globe-thin.svg new file mode 100644 index 0000000..1759874 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/globe-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/globe-x-thin.svg b/phosphor_orig/SVGs Flat/thin/globe-x-thin.svg new file mode 100644 index 0000000..8935fba --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/globe-x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/goggles-thin.svg b/phosphor_orig/SVGs Flat/thin/goggles-thin.svg new file mode 100644 index 0000000..b0820c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/goggles-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/golf-thin.svg b/phosphor_orig/SVGs Flat/thin/golf-thin.svg new file mode 100644 index 0000000..dd9451d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/golf-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/goodreads-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/goodreads-logo-thin.svg new file mode 100644 index 0000000..948b55e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/goodreads-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/google-cardboard-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/google-cardboard-logo-thin.svg new file mode 100644 index 0000000..fd4f4ca --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/google-cardboard-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/google-chrome-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/google-chrome-logo-thin.svg new file mode 100644 index 0000000..50abdb2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/google-chrome-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/google-drive-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/google-drive-logo-thin.svg new file mode 100644 index 0000000..0a4c519 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/google-drive-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/google-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/google-logo-thin.svg new file mode 100644 index 0000000..060cde2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/google-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/google-photos-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/google-photos-logo-thin.svg new file mode 100644 index 0000000..0e99630 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/google-photos-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/google-play-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/google-play-logo-thin.svg new file mode 100644 index 0000000..bb83b28 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/google-play-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/google-podcasts-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/google-podcasts-logo-thin.svg new file mode 100644 index 0000000..98d9435 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/google-podcasts-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gps-fix-thin.svg b/phosphor_orig/SVGs Flat/thin/gps-fix-thin.svg new file mode 100644 index 0000000..0d7371d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gps-fix-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gps-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/gps-slash-thin.svg new file mode 100644 index 0000000..bb5e5f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gps-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gps-thin.svg b/phosphor_orig/SVGs Flat/thin/gps-thin.svg new file mode 100644 index 0000000..78af6cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gps-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/gradient-thin.svg b/phosphor_orig/SVGs Flat/thin/gradient-thin.svg new file mode 100644 index 0000000..b7b0f84 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/gradient-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/graduation-cap-thin.svg b/phosphor_orig/SVGs Flat/thin/graduation-cap-thin.svg new file mode 100644 index 0000000..dd4a208 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/graduation-cap-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/grains-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/grains-slash-thin.svg new file mode 100644 index 0000000..ee1c615 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/grains-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/grains-thin.svg b/phosphor_orig/SVGs Flat/thin/grains-thin.svg new file mode 100644 index 0000000..12061e2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/grains-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/graph-thin.svg b/phosphor_orig/SVGs Flat/thin/graph-thin.svg new file mode 100644 index 0000000..265d4c3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/graph-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/graphics-card-thin.svg b/phosphor_orig/SVGs Flat/thin/graphics-card-thin.svg new file mode 100644 index 0000000..2c2eab6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/graphics-card-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/greater-than-or-equal-thin.svg b/phosphor_orig/SVGs Flat/thin/greater-than-or-equal-thin.svg new file mode 100644 index 0000000..9768156 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/greater-than-or-equal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/greater-than-thin.svg b/phosphor_orig/SVGs Flat/thin/greater-than-thin.svg new file mode 100644 index 0000000..06dda98 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/greater-than-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/grid-four-thin.svg b/phosphor_orig/SVGs Flat/thin/grid-four-thin.svg new file mode 100644 index 0000000..8f85247 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/grid-four-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/grid-nine-thin.svg b/phosphor_orig/SVGs Flat/thin/grid-nine-thin.svg new file mode 100644 index 0000000..4fb3df7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/grid-nine-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/guitar-thin.svg b/phosphor_orig/SVGs Flat/thin/guitar-thin.svg new file mode 100644 index 0000000..fa849bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/guitar-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hair-dryer-thin.svg b/phosphor_orig/SVGs Flat/thin/hair-dryer-thin.svg new file mode 100644 index 0000000..fa2c100 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hair-dryer-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hamburger-thin.svg b/phosphor_orig/SVGs Flat/thin/hamburger-thin.svg new file mode 100644 index 0000000..513e903 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hamburger-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hammer-thin.svg b/phosphor_orig/SVGs Flat/thin/hammer-thin.svg new file mode 100644 index 0000000..8faa00b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hammer-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-arrow-down-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-arrow-down-thin.svg new file mode 100644 index 0000000..2360f71 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-arrow-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-arrow-up-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-arrow-up-thin.svg new file mode 100644 index 0000000..59f00ae --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-arrow-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-coins-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-coins-thin.svg new file mode 100644 index 0000000..8bbed21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-coins-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-deposit-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-deposit-thin.svg new file mode 100644 index 0000000..05ee22a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-deposit-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-eye-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-eye-thin.svg new file mode 100644 index 0000000..fe93dfc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-eye-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-fist-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-fist-thin.svg new file mode 100644 index 0000000..0d15ff4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-fist-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-grabbing-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-grabbing-thin.svg new file mode 100644 index 0000000..19a7e60 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-grabbing-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-heart-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-heart-thin.svg new file mode 100644 index 0000000..6a4fe84 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-heart-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-palm-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-palm-thin.svg new file mode 100644 index 0000000..dd884ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-palm-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-peace-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-peace-thin.svg new file mode 100644 index 0000000..10f54bb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-peace-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-pointing-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-pointing-thin.svg new file mode 100644 index 0000000..2bcec40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-pointing-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-soap-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-soap-thin.svg new file mode 100644 index 0000000..40349e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-soap-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-swipe-left-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-swipe-left-thin.svg new file mode 100644 index 0000000..3f38609 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-swipe-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-swipe-right-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-swipe-right-thin.svg new file mode 100644 index 0000000..284155c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-swipe-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-tap-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-tap-thin.svg new file mode 100644 index 0000000..6962eaf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-tap-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-thin.svg new file mode 100644 index 0000000..0fd0092 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-waving-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-waving-thin.svg new file mode 100644 index 0000000..c1a74ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-waving-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hand-withdraw-thin.svg b/phosphor_orig/SVGs Flat/thin/hand-withdraw-thin.svg new file mode 100644 index 0000000..5eb1294 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hand-withdraw-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/handbag-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/handbag-simple-thin.svg new file mode 100644 index 0000000..a3bf45a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/handbag-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/handbag-thin.svg b/phosphor_orig/SVGs Flat/thin/handbag-thin.svg new file mode 100644 index 0000000..1344d37 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/handbag-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hands-clapping-thin.svg b/phosphor_orig/SVGs Flat/thin/hands-clapping-thin.svg new file mode 100644 index 0000000..18088df --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hands-clapping-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hands-praying-thin.svg b/phosphor_orig/SVGs Flat/thin/hands-praying-thin.svg new file mode 100644 index 0000000..ba63f9b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hands-praying-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/handshake-thin.svg b/phosphor_orig/SVGs Flat/thin/handshake-thin.svg new file mode 100644 index 0000000..eac5f8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/handshake-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hard-drive-thin.svg b/phosphor_orig/SVGs Flat/thin/hard-drive-thin.svg new file mode 100644 index 0000000..c7f1617 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hard-drive-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hard-drives-thin.svg b/phosphor_orig/SVGs Flat/thin/hard-drives-thin.svg new file mode 100644 index 0000000..cd67105 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hard-drives-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hard-hat-thin.svg b/phosphor_orig/SVGs Flat/thin/hard-hat-thin.svg new file mode 100644 index 0000000..1ed3589 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hard-hat-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hash-straight-thin.svg b/phosphor_orig/SVGs Flat/thin/hash-straight-thin.svg new file mode 100644 index 0000000..eba7c89 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hash-straight-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hash-thin.svg b/phosphor_orig/SVGs Flat/thin/hash-thin.svg new file mode 100644 index 0000000..581ae28 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/head-circuit-thin.svg b/phosphor_orig/SVGs Flat/thin/head-circuit-thin.svg new file mode 100644 index 0000000..6fe8221 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/head-circuit-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/headlights-thin.svg b/phosphor_orig/SVGs Flat/thin/headlights-thin.svg new file mode 100644 index 0000000..66d4a11 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/headlights-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/headphones-thin.svg b/phosphor_orig/SVGs Flat/thin/headphones-thin.svg new file mode 100644 index 0000000..00218e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/headphones-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/headset-thin.svg b/phosphor_orig/SVGs Flat/thin/headset-thin.svg new file mode 100644 index 0000000..99750f0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/headset-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/heart-break-thin.svg b/phosphor_orig/SVGs Flat/thin/heart-break-thin.svg new file mode 100644 index 0000000..b62cbaf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/heart-break-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/heart-half-thin.svg b/phosphor_orig/SVGs Flat/thin/heart-half-thin.svg new file mode 100644 index 0000000..1b9fc85 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/heart-half-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/heart-straight-break-thin.svg b/phosphor_orig/SVGs Flat/thin/heart-straight-break-thin.svg new file mode 100644 index 0000000..0bfb4db --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/heart-straight-break-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/heart-straight-thin.svg b/phosphor_orig/SVGs Flat/thin/heart-straight-thin.svg new file mode 100644 index 0000000..53d4786 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/heart-straight-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/heart-thin.svg b/phosphor_orig/SVGs Flat/thin/heart-thin.svg new file mode 100644 index 0000000..5734afa --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/heart-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/heartbeat-thin.svg b/phosphor_orig/SVGs Flat/thin/heartbeat-thin.svg new file mode 100644 index 0000000..988fd3d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/heartbeat-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hexagon-thin.svg b/phosphor_orig/SVGs Flat/thin/hexagon-thin.svg new file mode 100644 index 0000000..e941a3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hexagon-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/high-definition-thin.svg b/phosphor_orig/SVGs Flat/thin/high-definition-thin.svg new file mode 100644 index 0000000..2fff370 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/high-definition-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/high-heel-thin.svg b/phosphor_orig/SVGs Flat/thin/high-heel-thin.svg new file mode 100644 index 0000000..f347c1e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/high-heel-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/highlighter-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/highlighter-circle-thin.svg new file mode 100644 index 0000000..ad59002 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/highlighter-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/highlighter-thin.svg b/phosphor_orig/SVGs Flat/thin/highlighter-thin.svg new file mode 100644 index 0000000..3dec050 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/highlighter-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hockey-thin.svg b/phosphor_orig/SVGs Flat/thin/hockey-thin.svg new file mode 100644 index 0000000..5c791b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hockey-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hoodie-thin.svg b/phosphor_orig/SVGs Flat/thin/hoodie-thin.svg new file mode 100644 index 0000000..9364b14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hoodie-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/horse-thin.svg b/phosphor_orig/SVGs Flat/thin/horse-thin.svg new file mode 100644 index 0000000..239df38 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/horse-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hospital-thin.svg b/phosphor_orig/SVGs Flat/thin/hospital-thin.svg new file mode 100644 index 0000000..20955c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hospital-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hourglass-high-thin.svg b/phosphor_orig/SVGs Flat/thin/hourglass-high-thin.svg new file mode 100644 index 0000000..65d2b26 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hourglass-high-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hourglass-low-thin.svg b/phosphor_orig/SVGs Flat/thin/hourglass-low-thin.svg new file mode 100644 index 0000000..fd7bdc5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hourglass-low-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hourglass-medium-thin.svg b/phosphor_orig/SVGs Flat/thin/hourglass-medium-thin.svg new file mode 100644 index 0000000..cb9caf9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hourglass-medium-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hourglass-simple-high-thin.svg b/phosphor_orig/SVGs Flat/thin/hourglass-simple-high-thin.svg new file mode 100644 index 0000000..50a459a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hourglass-simple-high-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hourglass-simple-low-thin.svg b/phosphor_orig/SVGs Flat/thin/hourglass-simple-low-thin.svg new file mode 100644 index 0000000..fc967a3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hourglass-simple-low-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hourglass-simple-medium-thin.svg b/phosphor_orig/SVGs Flat/thin/hourglass-simple-medium-thin.svg new file mode 100644 index 0000000..9dfd67f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hourglass-simple-medium-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hourglass-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/hourglass-simple-thin.svg new file mode 100644 index 0000000..33f1cec --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hourglass-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hourglass-thin.svg b/phosphor_orig/SVGs Flat/thin/hourglass-thin.svg new file mode 100644 index 0000000..51a99d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hourglass-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/house-line-thin.svg b/phosphor_orig/SVGs Flat/thin/house-line-thin.svg new file mode 100644 index 0000000..70c4a3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/house-line-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/house-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/house-simple-thin.svg new file mode 100644 index 0000000..001b0a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/house-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/house-thin.svg b/phosphor_orig/SVGs Flat/thin/house-thin.svg new file mode 100644 index 0000000..d042a3c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/house-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/hurricane-thin.svg b/phosphor_orig/SVGs Flat/thin/hurricane-thin.svg new file mode 100644 index 0000000..2812118 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/hurricane-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/ice-cream-thin.svg b/phosphor_orig/SVGs Flat/thin/ice-cream-thin.svg new file mode 100644 index 0000000..d3848d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/ice-cream-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/identification-badge-thin.svg b/phosphor_orig/SVGs Flat/thin/identification-badge-thin.svg new file mode 100644 index 0000000..1452d24 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/identification-badge-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/identification-card-thin.svg b/phosphor_orig/SVGs Flat/thin/identification-card-thin.svg new file mode 100644 index 0000000..3936c10 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/identification-card-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/image-broken-thin.svg b/phosphor_orig/SVGs Flat/thin/image-broken-thin.svg new file mode 100644 index 0000000..48d375a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/image-broken-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/image-square-thin.svg b/phosphor_orig/SVGs Flat/thin/image-square-thin.svg new file mode 100644 index 0000000..ccbacd7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/image-square-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/image-thin.svg b/phosphor_orig/SVGs Flat/thin/image-thin.svg new file mode 100644 index 0000000..7cb58b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/image-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/images-square-thin.svg b/phosphor_orig/SVGs Flat/thin/images-square-thin.svg new file mode 100644 index 0000000..1bb935a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/images-square-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/images-thin.svg b/phosphor_orig/SVGs Flat/thin/images-thin.svg new file mode 100644 index 0000000..2c83919 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/images-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/infinity-thin.svg b/phosphor_orig/SVGs Flat/thin/infinity-thin.svg new file mode 100644 index 0000000..a002050 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/infinity-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/info-thin.svg b/phosphor_orig/SVGs Flat/thin/info-thin.svg new file mode 100644 index 0000000..7b11d86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/info-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/instagram-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/instagram-logo-thin.svg new file mode 100644 index 0000000..9bb7651 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/instagram-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/intersect-square-thin.svg b/phosphor_orig/SVGs Flat/thin/intersect-square-thin.svg new file mode 100644 index 0000000..f0352e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/intersect-square-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/intersect-thin.svg b/phosphor_orig/SVGs Flat/thin/intersect-thin.svg new file mode 100644 index 0000000..75a05a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/intersect-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/intersect-three-thin.svg b/phosphor_orig/SVGs Flat/thin/intersect-three-thin.svg new file mode 100644 index 0000000..a2df780 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/intersect-three-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/intersection-thin.svg b/phosphor_orig/SVGs Flat/thin/intersection-thin.svg new file mode 100644 index 0000000..5fcbb0e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/intersection-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/invoice-thin.svg b/phosphor_orig/SVGs Flat/thin/invoice-thin.svg new file mode 100644 index 0000000..d60ca67 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/invoice-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/island-thin.svg b/phosphor_orig/SVGs Flat/thin/island-thin.svg new file mode 100644 index 0000000..a80fe7e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/island-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/jar-label-thin.svg b/phosphor_orig/SVGs Flat/thin/jar-label-thin.svg new file mode 100644 index 0000000..dba2a5b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/jar-label-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/jar-thin.svg b/phosphor_orig/SVGs Flat/thin/jar-thin.svg new file mode 100644 index 0000000..9cf6b57 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/jar-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/jeep-thin.svg b/phosphor_orig/SVGs Flat/thin/jeep-thin.svg new file mode 100644 index 0000000..c52cb2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/jeep-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/joystick-thin.svg b/phosphor_orig/SVGs Flat/thin/joystick-thin.svg new file mode 100644 index 0000000..83dc8c9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/joystick-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/kanban-thin.svg b/phosphor_orig/SVGs Flat/thin/kanban-thin.svg new file mode 100644 index 0000000..89c9279 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/kanban-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/key-return-thin.svg b/phosphor_orig/SVGs Flat/thin/key-return-thin.svg new file mode 100644 index 0000000..ebec1c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/key-return-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/key-thin.svg b/phosphor_orig/SVGs Flat/thin/key-thin.svg new file mode 100644 index 0000000..cf1905b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/key-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/keyboard-thin.svg b/phosphor_orig/SVGs Flat/thin/keyboard-thin.svg new file mode 100644 index 0000000..3ecb4c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/keyboard-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/keyhole-thin.svg b/phosphor_orig/SVGs Flat/thin/keyhole-thin.svg new file mode 100644 index 0000000..f863b1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/keyhole-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/knife-thin.svg b/phosphor_orig/SVGs Flat/thin/knife-thin.svg new file mode 100644 index 0000000..635ff0c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/knife-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/ladder-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/ladder-simple-thin.svg new file mode 100644 index 0000000..4b0b691 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/ladder-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/ladder-thin.svg b/phosphor_orig/SVGs Flat/thin/ladder-thin.svg new file mode 100644 index 0000000..e2f81c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/ladder-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lamp-pendant-thin.svg b/phosphor_orig/SVGs Flat/thin/lamp-pendant-thin.svg new file mode 100644 index 0000000..d837ca9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lamp-pendant-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lamp-thin.svg b/phosphor_orig/SVGs Flat/thin/lamp-thin.svg new file mode 100644 index 0000000..0c3bfe3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lamp-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/laptop-thin.svg b/phosphor_orig/SVGs Flat/thin/laptop-thin.svg new file mode 100644 index 0000000..e30b3df --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/laptop-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lasso-thin.svg b/phosphor_orig/SVGs Flat/thin/lasso-thin.svg new file mode 100644 index 0000000..1c7d409 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lasso-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lastfm-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/lastfm-logo-thin.svg new file mode 100644 index 0000000..96aa6dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lastfm-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/layout-thin.svg b/phosphor_orig/SVGs Flat/thin/layout-thin.svg new file mode 100644 index 0000000..b173f5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/layout-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/leaf-thin.svg b/phosphor_orig/SVGs Flat/thin/leaf-thin.svg new file mode 100644 index 0000000..5cd3756 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/leaf-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lectern-thin.svg b/phosphor_orig/SVGs Flat/thin/lectern-thin.svg new file mode 100644 index 0000000..61133bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lectern-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lego-smiley-thin.svg b/phosphor_orig/SVGs Flat/thin/lego-smiley-thin.svg new file mode 100644 index 0000000..bf6cfb1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lego-smiley-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lego-thin.svg b/phosphor_orig/SVGs Flat/thin/lego-thin.svg new file mode 100644 index 0000000..78a9256 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lego-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/less-than-or-equal-thin.svg b/phosphor_orig/SVGs Flat/thin/less-than-or-equal-thin.svg new file mode 100644 index 0000000..fb881f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/less-than-or-equal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/less-than-thin.svg b/phosphor_orig/SVGs Flat/thin/less-than-thin.svg new file mode 100644 index 0000000..0b470cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/less-than-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/letter-circle-h-thin.svg b/phosphor_orig/SVGs Flat/thin/letter-circle-h-thin.svg new file mode 100644 index 0000000..92586ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/letter-circle-h-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/letter-circle-p-thin.svg b/phosphor_orig/SVGs Flat/thin/letter-circle-p-thin.svg new file mode 100644 index 0000000..c6482ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/letter-circle-p-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/letter-circle-v-thin.svg b/phosphor_orig/SVGs Flat/thin/letter-circle-v-thin.svg new file mode 100644 index 0000000..b540fdb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/letter-circle-v-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lifebuoy-thin.svg b/phosphor_orig/SVGs Flat/thin/lifebuoy-thin.svg new file mode 100644 index 0000000..8c740df --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lifebuoy-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lightbulb-filament-thin.svg b/phosphor_orig/SVGs Flat/thin/lightbulb-filament-thin.svg new file mode 100644 index 0000000..6efa074 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lightbulb-filament-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lightbulb-thin.svg b/phosphor_orig/SVGs Flat/thin/lightbulb-thin.svg new file mode 100644 index 0000000..aa77d38 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lightbulb-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lighthouse-thin.svg b/phosphor_orig/SVGs Flat/thin/lighthouse-thin.svg new file mode 100644 index 0000000..59ab865 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lighthouse-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lightning-a-thin.svg b/phosphor_orig/SVGs Flat/thin/lightning-a-thin.svg new file mode 100644 index 0000000..60a2cea --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lightning-a-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lightning-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/lightning-slash-thin.svg new file mode 100644 index 0000000..9733c35 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lightning-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lightning-thin.svg b/phosphor_orig/SVGs Flat/thin/lightning-thin.svg new file mode 100644 index 0000000..83ea022 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lightning-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/line-segment-thin.svg b/phosphor_orig/SVGs Flat/thin/line-segment-thin.svg new file mode 100644 index 0000000..130f56e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/line-segment-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/line-segments-thin.svg b/phosphor_orig/SVGs Flat/thin/line-segments-thin.svg new file mode 100644 index 0000000..f693535 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/line-segments-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/line-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/line-vertical-thin.svg new file mode 100644 index 0000000..000ad1f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/line-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/link-break-thin.svg b/phosphor_orig/SVGs Flat/thin/link-break-thin.svg new file mode 100644 index 0000000..f1a91d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/link-break-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/link-simple-break-thin.svg b/phosphor_orig/SVGs Flat/thin/link-simple-break-thin.svg new file mode 100644 index 0000000..3091b19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/link-simple-break-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/link-simple-horizontal-break-thin.svg b/phosphor_orig/SVGs Flat/thin/link-simple-horizontal-break-thin.svg new file mode 100644 index 0000000..518dd2c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/link-simple-horizontal-break-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/link-simple-horizontal-thin.svg b/phosphor_orig/SVGs Flat/thin/link-simple-horizontal-thin.svg new file mode 100644 index 0000000..6941b54 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/link-simple-horizontal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/link-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/link-simple-thin.svg new file mode 100644 index 0000000..aefde25 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/link-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/link-thin.svg b/phosphor_orig/SVGs Flat/thin/link-thin.svg new file mode 100644 index 0000000..b38eee3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/link-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/linkedin-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/linkedin-logo-thin.svg new file mode 100644 index 0000000..b90a32e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/linkedin-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/linktree-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/linktree-logo-thin.svg new file mode 100644 index 0000000..cdd2174 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/linktree-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/linux-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/linux-logo-thin.svg new file mode 100644 index 0000000..322b660 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/linux-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/list-bullets-thin.svg b/phosphor_orig/SVGs Flat/thin/list-bullets-thin.svg new file mode 100644 index 0000000..046710e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/list-bullets-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/list-checks-thin.svg b/phosphor_orig/SVGs Flat/thin/list-checks-thin.svg new file mode 100644 index 0000000..fe36aa8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/list-checks-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/list-dashes-thin.svg b/phosphor_orig/SVGs Flat/thin/list-dashes-thin.svg new file mode 100644 index 0000000..ed66bd3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/list-dashes-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/list-heart-thin.svg b/phosphor_orig/SVGs Flat/thin/list-heart-thin.svg new file mode 100644 index 0000000..d9d11d1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/list-heart-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/list-magnifying-glass-thin.svg b/phosphor_orig/SVGs Flat/thin/list-magnifying-glass-thin.svg new file mode 100644 index 0000000..3a1277e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/list-magnifying-glass-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/list-numbers-thin.svg b/phosphor_orig/SVGs Flat/thin/list-numbers-thin.svg new file mode 100644 index 0000000..794a7fa --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/list-numbers-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/list-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/list-plus-thin.svg new file mode 100644 index 0000000..6014e70 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/list-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/list-star-thin.svg b/phosphor_orig/SVGs Flat/thin/list-star-thin.svg new file mode 100644 index 0000000..d9a0d5c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/list-star-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/list-thin.svg b/phosphor_orig/SVGs Flat/thin/list-thin.svg new file mode 100644 index 0000000..4d39d2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/list-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lock-key-open-thin.svg b/phosphor_orig/SVGs Flat/thin/lock-key-open-thin.svg new file mode 100644 index 0000000..bd33e7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lock-key-open-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lock-key-thin.svg b/phosphor_orig/SVGs Flat/thin/lock-key-thin.svg new file mode 100644 index 0000000..807ebe1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lock-key-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lock-laminated-open-thin.svg b/phosphor_orig/SVGs Flat/thin/lock-laminated-open-thin.svg new file mode 100644 index 0000000..3a3fbdc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lock-laminated-open-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lock-laminated-thin.svg b/phosphor_orig/SVGs Flat/thin/lock-laminated-thin.svg new file mode 100644 index 0000000..ef96f5f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lock-laminated-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lock-open-thin.svg b/phosphor_orig/SVGs Flat/thin/lock-open-thin.svg new file mode 100644 index 0000000..bd62385 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lock-open-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lock-simple-open-thin.svg b/phosphor_orig/SVGs Flat/thin/lock-simple-open-thin.svg new file mode 100644 index 0000000..6e089ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lock-simple-open-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lock-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/lock-simple-thin.svg new file mode 100644 index 0000000..bbd0052 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lock-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lock-thin.svg b/phosphor_orig/SVGs Flat/thin/lock-thin.svg new file mode 100644 index 0000000..da5b22f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lock-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/lockers-thin.svg b/phosphor_orig/SVGs Flat/thin/lockers-thin.svg new file mode 100644 index 0000000..1146099 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/lockers-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/log-thin.svg b/phosphor_orig/SVGs Flat/thin/log-thin.svg new file mode 100644 index 0000000..773a6ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/log-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/magic-wand-thin.svg b/phosphor_orig/SVGs Flat/thin/magic-wand-thin.svg new file mode 100644 index 0000000..45f7741 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/magic-wand-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/magnet-straight-thin.svg b/phosphor_orig/SVGs Flat/thin/magnet-straight-thin.svg new file mode 100644 index 0000000..45c6aa6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/magnet-straight-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/magnet-thin.svg b/phosphor_orig/SVGs Flat/thin/magnet-thin.svg new file mode 100644 index 0000000..06e9175 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/magnet-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/magnifying-glass-minus-thin.svg b/phosphor_orig/SVGs Flat/thin/magnifying-glass-minus-thin.svg new file mode 100644 index 0000000..0a7ee17 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/magnifying-glass-minus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/magnifying-glass-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/magnifying-glass-plus-thin.svg new file mode 100644 index 0000000..e71334f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/magnifying-glass-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/magnifying-glass-thin.svg b/phosphor_orig/SVGs Flat/thin/magnifying-glass-thin.svg new file mode 100644 index 0000000..a6c4b79 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/magnifying-glass-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/mailbox-thin.svg b/phosphor_orig/SVGs Flat/thin/mailbox-thin.svg new file mode 100644 index 0000000..549abbd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/mailbox-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/map-pin-area-thin.svg b/phosphor_orig/SVGs Flat/thin/map-pin-area-thin.svg new file mode 100644 index 0000000..4fb9e8e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/map-pin-area-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/map-pin-line-thin.svg b/phosphor_orig/SVGs Flat/thin/map-pin-line-thin.svg new file mode 100644 index 0000000..a63aa44 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/map-pin-line-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/map-pin-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/map-pin-plus-thin.svg new file mode 100644 index 0000000..46f9308 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/map-pin-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/map-pin-simple-area-thin.svg b/phosphor_orig/SVGs Flat/thin/map-pin-simple-area-thin.svg new file mode 100644 index 0000000..22c7a46 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/map-pin-simple-area-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/map-pin-simple-line-thin.svg b/phosphor_orig/SVGs Flat/thin/map-pin-simple-line-thin.svg new file mode 100644 index 0000000..6f25129 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/map-pin-simple-line-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/map-pin-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/map-pin-simple-thin.svg new file mode 100644 index 0000000..2390f92 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/map-pin-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/map-pin-thin.svg b/phosphor_orig/SVGs Flat/thin/map-pin-thin.svg new file mode 100644 index 0000000..b3c20d6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/map-pin-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/map-trifold-thin.svg b/phosphor_orig/SVGs Flat/thin/map-trifold-thin.svg new file mode 100644 index 0000000..a4c7e8c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/map-trifold-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/markdown-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/markdown-logo-thin.svg new file mode 100644 index 0000000..785b16e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/markdown-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/marker-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/marker-circle-thin.svg new file mode 100644 index 0000000..fc623ac --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/marker-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/martini-thin.svg b/phosphor_orig/SVGs Flat/thin/martini-thin.svg new file mode 100644 index 0000000..4c5e543 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/martini-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/mask-happy-thin.svg b/phosphor_orig/SVGs Flat/thin/mask-happy-thin.svg new file mode 100644 index 0000000..f834c8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/mask-happy-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/mask-sad-thin.svg b/phosphor_orig/SVGs Flat/thin/mask-sad-thin.svg new file mode 100644 index 0000000..9a0594f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/mask-sad-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/mastodon-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/mastodon-logo-thin.svg new file mode 100644 index 0000000..dc9f0ba --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/mastodon-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/math-operations-thin.svg b/phosphor_orig/SVGs Flat/thin/math-operations-thin.svg new file mode 100644 index 0000000..29f18d7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/math-operations-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/matrix-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/matrix-logo-thin.svg new file mode 100644 index 0000000..669b515 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/matrix-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/medal-military-thin.svg b/phosphor_orig/SVGs Flat/thin/medal-military-thin.svg new file mode 100644 index 0000000..1ec9123 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/medal-military-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/medal-thin.svg b/phosphor_orig/SVGs Flat/thin/medal-thin.svg new file mode 100644 index 0000000..b379f9f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/medal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/medium-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/medium-logo-thin.svg new file mode 100644 index 0000000..689b5a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/medium-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/megaphone-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/megaphone-simple-thin.svg new file mode 100644 index 0000000..95cb203 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/megaphone-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/megaphone-thin.svg b/phosphor_orig/SVGs Flat/thin/megaphone-thin.svg new file mode 100644 index 0000000..107cb7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/megaphone-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/member-of-thin.svg b/phosphor_orig/SVGs Flat/thin/member-of-thin.svg new file mode 100644 index 0000000..eab25c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/member-of-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/memory-thin.svg b/phosphor_orig/SVGs Flat/thin/memory-thin.svg new file mode 100644 index 0000000..7943175 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/memory-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/messenger-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/messenger-logo-thin.svg new file mode 100644 index 0000000..1afdfbb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/messenger-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/meta-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/meta-logo-thin.svg new file mode 100644 index 0000000..628e662 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/meta-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/meteor-thin.svg b/phosphor_orig/SVGs Flat/thin/meteor-thin.svg new file mode 100644 index 0000000..c6c6345 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/meteor-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/metronome-thin.svg b/phosphor_orig/SVGs Flat/thin/metronome-thin.svg new file mode 100644 index 0000000..74c8d94 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/metronome-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/microphone-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/microphone-slash-thin.svg new file mode 100644 index 0000000..a478d79 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/microphone-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/microphone-stage-thin.svg b/phosphor_orig/SVGs Flat/thin/microphone-stage-thin.svg new file mode 100644 index 0000000..bdbc887 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/microphone-stage-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/microphone-thin.svg b/phosphor_orig/SVGs Flat/thin/microphone-thin.svg new file mode 100644 index 0000000..ad88c83 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/microphone-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/microscope-thin.svg b/phosphor_orig/SVGs Flat/thin/microscope-thin.svg new file mode 100644 index 0000000..b700d40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/microscope-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/microsoft-excel-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/microsoft-excel-logo-thin.svg new file mode 100644 index 0000000..ee187e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/microsoft-excel-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/microsoft-outlook-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/microsoft-outlook-logo-thin.svg new file mode 100644 index 0000000..275c2cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/microsoft-outlook-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/microsoft-powerpoint-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/microsoft-powerpoint-logo-thin.svg new file mode 100644 index 0000000..fb299a8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/microsoft-powerpoint-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/microsoft-teams-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/microsoft-teams-logo-thin.svg new file mode 100644 index 0000000..c126fc7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/microsoft-teams-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/microsoft-word-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/microsoft-word-logo-thin.svg new file mode 100644 index 0000000..ba2834f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/microsoft-word-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/minus-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/minus-circle-thin.svg new file mode 100644 index 0000000..dfdc1a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/minus-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/minus-square-thin.svg b/phosphor_orig/SVGs Flat/thin/minus-square-thin.svg new file mode 100644 index 0000000..66cbe7a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/minus-square-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/minus-thin.svg b/phosphor_orig/SVGs Flat/thin/minus-thin.svg new file mode 100644 index 0000000..ba12964 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/minus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/money-thin.svg b/phosphor_orig/SVGs Flat/thin/money-thin.svg new file mode 100644 index 0000000..77baa03 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/money-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/money-wavy-thin.svg b/phosphor_orig/SVGs Flat/thin/money-wavy-thin.svg new file mode 100644 index 0000000..fe8f2a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/money-wavy-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/monitor-arrow-up-thin.svg b/phosphor_orig/SVGs Flat/thin/monitor-arrow-up-thin.svg new file mode 100644 index 0000000..39fdb6c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/monitor-arrow-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/monitor-play-thin.svg b/phosphor_orig/SVGs Flat/thin/monitor-play-thin.svg new file mode 100644 index 0000000..ada9d72 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/monitor-play-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/monitor-thin.svg b/phosphor_orig/SVGs Flat/thin/monitor-thin.svg new file mode 100644 index 0000000..071ee36 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/monitor-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/moon-stars-thin.svg b/phosphor_orig/SVGs Flat/thin/moon-stars-thin.svg new file mode 100644 index 0000000..c71a38c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/moon-stars-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/moon-thin.svg b/phosphor_orig/SVGs Flat/thin/moon-thin.svg new file mode 100644 index 0000000..2d7de6e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/moon-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/moped-front-thin.svg b/phosphor_orig/SVGs Flat/thin/moped-front-thin.svg new file mode 100644 index 0000000..5e018d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/moped-front-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/moped-thin.svg b/phosphor_orig/SVGs Flat/thin/moped-thin.svg new file mode 100644 index 0000000..af30038 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/moped-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/mosque-thin.svg b/phosphor_orig/SVGs Flat/thin/mosque-thin.svg new file mode 100644 index 0000000..15cb125 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/mosque-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/motorcycle-thin.svg b/phosphor_orig/SVGs Flat/thin/motorcycle-thin.svg new file mode 100644 index 0000000..2534d0a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/motorcycle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/mountains-thin.svg b/phosphor_orig/SVGs Flat/thin/mountains-thin.svg new file mode 100644 index 0000000..d481191 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/mountains-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/mouse-left-click-thin.svg b/phosphor_orig/SVGs Flat/thin/mouse-left-click-thin.svg new file mode 100644 index 0000000..8208bc2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/mouse-left-click-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/mouse-middle-click-thin.svg b/phosphor_orig/SVGs Flat/thin/mouse-middle-click-thin.svg new file mode 100644 index 0000000..8493030 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/mouse-middle-click-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/mouse-right-click-thin.svg b/phosphor_orig/SVGs Flat/thin/mouse-right-click-thin.svg new file mode 100644 index 0000000..3cef1a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/mouse-right-click-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/mouse-scroll-thin.svg b/phosphor_orig/SVGs Flat/thin/mouse-scroll-thin.svg new file mode 100644 index 0000000..d0b7427 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/mouse-scroll-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/mouse-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/mouse-simple-thin.svg new file mode 100644 index 0000000..550f816 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/mouse-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/mouse-thin.svg b/phosphor_orig/SVGs Flat/thin/mouse-thin.svg new file mode 100644 index 0000000..587d1c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/mouse-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/music-note-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/music-note-simple-thin.svg new file mode 100644 index 0000000..09ef5bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/music-note-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/music-note-thin.svg b/phosphor_orig/SVGs Flat/thin/music-note-thin.svg new file mode 100644 index 0000000..438a195 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/music-note-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/music-notes-minus-thin.svg b/phosphor_orig/SVGs Flat/thin/music-notes-minus-thin.svg new file mode 100644 index 0000000..66e8094 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/music-notes-minus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/music-notes-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/music-notes-plus-thin.svg new file mode 100644 index 0000000..a835b42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/music-notes-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/music-notes-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/music-notes-simple-thin.svg new file mode 100644 index 0000000..efc46c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/music-notes-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/music-notes-thin.svg b/phosphor_orig/SVGs Flat/thin/music-notes-thin.svg new file mode 100644 index 0000000..3949447 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/music-notes-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/navigation-arrow-thin.svg b/phosphor_orig/SVGs Flat/thin/navigation-arrow-thin.svg new file mode 100644 index 0000000..fecb9ce --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/navigation-arrow-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/needle-thin.svg b/phosphor_orig/SVGs Flat/thin/needle-thin.svg new file mode 100644 index 0000000..0a4655b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/needle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/network-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/network-slash-thin.svg new file mode 100644 index 0000000..e7a99ff --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/network-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/network-thin.svg b/phosphor_orig/SVGs Flat/thin/network-thin.svg new file mode 100644 index 0000000..866c24e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/network-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/network-x-thin.svg b/phosphor_orig/SVGs Flat/thin/network-x-thin.svg new file mode 100644 index 0000000..4f196e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/network-x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/newspaper-clipping-thin.svg b/phosphor_orig/SVGs Flat/thin/newspaper-clipping-thin.svg new file mode 100644 index 0000000..245838d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/newspaper-clipping-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/newspaper-thin.svg b/phosphor_orig/SVGs Flat/thin/newspaper-thin.svg new file mode 100644 index 0000000..f0b3e9d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/newspaper-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/not-equals-thin.svg b/phosphor_orig/SVGs Flat/thin/not-equals-thin.svg new file mode 100644 index 0000000..8e51839 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/not-equals-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/not-member-of-thin.svg b/phosphor_orig/SVGs Flat/thin/not-member-of-thin.svg new file mode 100644 index 0000000..eb45c7d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/not-member-of-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/not-subset-of-thin.svg b/phosphor_orig/SVGs Flat/thin/not-subset-of-thin.svg new file mode 100644 index 0000000..f78acf0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/not-subset-of-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/not-superset-of-thin.svg b/phosphor_orig/SVGs Flat/thin/not-superset-of-thin.svg new file mode 100644 index 0000000..7e9f05b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/not-superset-of-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/notches-thin.svg b/phosphor_orig/SVGs Flat/thin/notches-thin.svg new file mode 100644 index 0000000..31bb7ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/notches-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/note-blank-thin.svg b/phosphor_orig/SVGs Flat/thin/note-blank-thin.svg new file mode 100644 index 0000000..e563f0f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/note-blank-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/note-pencil-thin.svg b/phosphor_orig/SVGs Flat/thin/note-pencil-thin.svg new file mode 100644 index 0000000..d976cdf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/note-pencil-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/note-thin.svg b/phosphor_orig/SVGs Flat/thin/note-thin.svg new file mode 100644 index 0000000..0343c94 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/note-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/notebook-thin.svg b/phosphor_orig/SVGs Flat/thin/notebook-thin.svg new file mode 100644 index 0000000..c4f3fa6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/notebook-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/notepad-thin.svg b/phosphor_orig/SVGs Flat/thin/notepad-thin.svg new file mode 100644 index 0000000..b256e97 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/notepad-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/notification-thin.svg b/phosphor_orig/SVGs Flat/thin/notification-thin.svg new file mode 100644 index 0000000..f2a9f99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/notification-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/notion-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/notion-logo-thin.svg new file mode 100644 index 0000000..79a51e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/notion-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/nuclear-plant-thin.svg b/phosphor_orig/SVGs Flat/thin/nuclear-plant-thin.svg new file mode 100644 index 0000000..5774fce --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/nuclear-plant-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-circle-eight-thin.svg b/phosphor_orig/SVGs Flat/thin/number-circle-eight-thin.svg new file mode 100644 index 0000000..e090f14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-circle-eight-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-circle-five-thin.svg b/phosphor_orig/SVGs Flat/thin/number-circle-five-thin.svg new file mode 100644 index 0000000..7f075c6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-circle-five-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-circle-four-thin.svg b/phosphor_orig/SVGs Flat/thin/number-circle-four-thin.svg new file mode 100644 index 0000000..00352a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-circle-four-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-circle-nine-thin.svg b/phosphor_orig/SVGs Flat/thin/number-circle-nine-thin.svg new file mode 100644 index 0000000..ec25e56 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-circle-nine-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-circle-one-thin.svg b/phosphor_orig/SVGs Flat/thin/number-circle-one-thin.svg new file mode 100644 index 0000000..26bbd2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-circle-one-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-circle-seven-thin.svg b/phosphor_orig/SVGs Flat/thin/number-circle-seven-thin.svg new file mode 100644 index 0000000..27926f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-circle-seven-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-circle-six-thin.svg b/phosphor_orig/SVGs Flat/thin/number-circle-six-thin.svg new file mode 100644 index 0000000..621a7ef --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-circle-six-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-circle-three-thin.svg b/phosphor_orig/SVGs Flat/thin/number-circle-three-thin.svg new file mode 100644 index 0000000..ba69881 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-circle-three-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-circle-two-thin.svg b/phosphor_orig/SVGs Flat/thin/number-circle-two-thin.svg new file mode 100644 index 0000000..da57835 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-circle-two-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-circle-zero-thin.svg b/phosphor_orig/SVGs Flat/thin/number-circle-zero-thin.svg new file mode 100644 index 0000000..1383a01 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-circle-zero-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-eight-thin.svg b/phosphor_orig/SVGs Flat/thin/number-eight-thin.svg new file mode 100644 index 0000000..dae5990 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-eight-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-five-thin.svg b/phosphor_orig/SVGs Flat/thin/number-five-thin.svg new file mode 100644 index 0000000..fd0244f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-five-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-four-thin.svg b/phosphor_orig/SVGs Flat/thin/number-four-thin.svg new file mode 100644 index 0000000..7818666 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-four-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-nine-thin.svg b/phosphor_orig/SVGs Flat/thin/number-nine-thin.svg new file mode 100644 index 0000000..5552644 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-nine-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-one-thin.svg b/phosphor_orig/SVGs Flat/thin/number-one-thin.svg new file mode 100644 index 0000000..fd02ade --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-one-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-seven-thin.svg b/phosphor_orig/SVGs Flat/thin/number-seven-thin.svg new file mode 100644 index 0000000..1ce2a8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-seven-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-six-thin.svg b/phosphor_orig/SVGs Flat/thin/number-six-thin.svg new file mode 100644 index 0000000..a83a6e4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-six-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-square-eight-thin.svg b/phosphor_orig/SVGs Flat/thin/number-square-eight-thin.svg new file mode 100644 index 0000000..b1fc0c5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-square-eight-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-square-five-thin.svg b/phosphor_orig/SVGs Flat/thin/number-square-five-thin.svg new file mode 100644 index 0000000..9f2aa8f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-square-five-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-square-four-thin.svg b/phosphor_orig/SVGs Flat/thin/number-square-four-thin.svg new file mode 100644 index 0000000..dd56555 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-square-four-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-square-nine-thin.svg b/phosphor_orig/SVGs Flat/thin/number-square-nine-thin.svg new file mode 100644 index 0000000..7324a43 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-square-nine-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-square-one-thin.svg b/phosphor_orig/SVGs Flat/thin/number-square-one-thin.svg new file mode 100644 index 0000000..5cf7120 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-square-one-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-square-seven-thin.svg b/phosphor_orig/SVGs Flat/thin/number-square-seven-thin.svg new file mode 100644 index 0000000..594f8d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-square-seven-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-square-six-thin.svg b/phosphor_orig/SVGs Flat/thin/number-square-six-thin.svg new file mode 100644 index 0000000..ed791db --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-square-six-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-square-three-thin.svg b/phosphor_orig/SVGs Flat/thin/number-square-three-thin.svg new file mode 100644 index 0000000..c132cf1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-square-three-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-square-two-thin.svg b/phosphor_orig/SVGs Flat/thin/number-square-two-thin.svg new file mode 100644 index 0000000..cd1e708 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-square-two-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-square-zero-thin.svg b/phosphor_orig/SVGs Flat/thin/number-square-zero-thin.svg new file mode 100644 index 0000000..84950cf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-square-zero-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-three-thin.svg b/phosphor_orig/SVGs Flat/thin/number-three-thin.svg new file mode 100644 index 0000000..e09e55c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-three-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-two-thin.svg b/phosphor_orig/SVGs Flat/thin/number-two-thin.svg new file mode 100644 index 0000000..6439a33 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-two-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/number-zero-thin.svg b/phosphor_orig/SVGs Flat/thin/number-zero-thin.svg new file mode 100644 index 0000000..7adc86d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/number-zero-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/numpad-thin.svg b/phosphor_orig/SVGs Flat/thin/numpad-thin.svg new file mode 100644 index 0000000..17d7651 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/numpad-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/nut-thin.svg b/phosphor_orig/SVGs Flat/thin/nut-thin.svg new file mode 100644 index 0000000..1847dc6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/nut-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/ny-times-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/ny-times-logo-thin.svg new file mode 100644 index 0000000..c364478 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/ny-times-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/octagon-thin.svg b/phosphor_orig/SVGs Flat/thin/octagon-thin.svg new file mode 100644 index 0000000..806eff8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/octagon-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/office-chair-thin.svg b/phosphor_orig/SVGs Flat/thin/office-chair-thin.svg new file mode 100644 index 0000000..530424d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/office-chair-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/onigiri-thin.svg b/phosphor_orig/SVGs Flat/thin/onigiri-thin.svg new file mode 100644 index 0000000..017da19 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/onigiri-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/open-ai-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/open-ai-logo-thin.svg new file mode 100644 index 0000000..097914a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/open-ai-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/option-thin.svg b/phosphor_orig/SVGs Flat/thin/option-thin.svg new file mode 100644 index 0000000..02300d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/option-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/orange-slice-thin.svg b/phosphor_orig/SVGs Flat/thin/orange-slice-thin.svg new file mode 100644 index 0000000..0dd0bd6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/orange-slice-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/orange-thin.svg b/phosphor_orig/SVGs Flat/thin/orange-thin.svg new file mode 100644 index 0000000..cb8e753 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/orange-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/oven-thin.svg b/phosphor_orig/SVGs Flat/thin/oven-thin.svg new file mode 100644 index 0000000..07b1f04 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/oven-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/package-thin.svg b/phosphor_orig/SVGs Flat/thin/package-thin.svg new file mode 100644 index 0000000..636d462 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/package-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/paint-brush-broad-thin.svg b/phosphor_orig/SVGs Flat/thin/paint-brush-broad-thin.svg new file mode 100644 index 0000000..fd107d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/paint-brush-broad-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/paint-brush-household-thin.svg b/phosphor_orig/SVGs Flat/thin/paint-brush-household-thin.svg new file mode 100644 index 0000000..1a75ea0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/paint-brush-household-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/paint-brush-thin.svg b/phosphor_orig/SVGs Flat/thin/paint-brush-thin.svg new file mode 100644 index 0000000..ef0c425 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/paint-brush-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/paint-bucket-thin.svg b/phosphor_orig/SVGs Flat/thin/paint-bucket-thin.svg new file mode 100644 index 0000000..625d5c6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/paint-bucket-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/paint-roller-thin.svg b/phosphor_orig/SVGs Flat/thin/paint-roller-thin.svg new file mode 100644 index 0000000..e9f4ec1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/paint-roller-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/palette-thin.svg b/phosphor_orig/SVGs Flat/thin/palette-thin.svg new file mode 100644 index 0000000..28ea3b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/palette-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/panorama-thin.svg b/phosphor_orig/SVGs Flat/thin/panorama-thin.svg new file mode 100644 index 0000000..dc6579b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/panorama-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pants-thin.svg b/phosphor_orig/SVGs Flat/thin/pants-thin.svg new file mode 100644 index 0000000..affd10e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pants-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/paper-plane-right-thin.svg b/phosphor_orig/SVGs Flat/thin/paper-plane-right-thin.svg new file mode 100644 index 0000000..40f058e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/paper-plane-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/paper-plane-thin.svg b/phosphor_orig/SVGs Flat/thin/paper-plane-thin.svg new file mode 100644 index 0000000..ded3b87 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/paper-plane-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/paper-plane-tilt-thin.svg b/phosphor_orig/SVGs Flat/thin/paper-plane-tilt-thin.svg new file mode 100644 index 0000000..34c4900 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/paper-plane-tilt-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/paperclip-horizontal-thin.svg b/phosphor_orig/SVGs Flat/thin/paperclip-horizontal-thin.svg new file mode 100644 index 0000000..ac412b0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/paperclip-horizontal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/paperclip-thin.svg b/phosphor_orig/SVGs Flat/thin/paperclip-thin.svg new file mode 100644 index 0000000..da1ec15 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/paperclip-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/parachute-thin.svg b/phosphor_orig/SVGs Flat/thin/parachute-thin.svg new file mode 100644 index 0000000..8bfde4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/parachute-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/paragraph-thin.svg b/phosphor_orig/SVGs Flat/thin/paragraph-thin.svg new file mode 100644 index 0000000..129ea0f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/paragraph-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/parallelogram-thin.svg b/phosphor_orig/SVGs Flat/thin/parallelogram-thin.svg new file mode 100644 index 0000000..f28cc7b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/parallelogram-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/park-thin.svg b/phosphor_orig/SVGs Flat/thin/park-thin.svg new file mode 100644 index 0000000..1cd11a2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/park-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/password-thin.svg b/phosphor_orig/SVGs Flat/thin/password-thin.svg new file mode 100644 index 0000000..137d4ec --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/password-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/path-thin.svg b/phosphor_orig/SVGs Flat/thin/path-thin.svg new file mode 100644 index 0000000..04c073d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/path-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/patreon-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/patreon-logo-thin.svg new file mode 100644 index 0000000..e574c8b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/patreon-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pause-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/pause-circle-thin.svg new file mode 100644 index 0000000..8e5552f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pause-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pause-thin.svg b/phosphor_orig/SVGs Flat/thin/pause-thin.svg new file mode 100644 index 0000000..281f5f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pause-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/paw-print-thin.svg b/phosphor_orig/SVGs Flat/thin/paw-print-thin.svg new file mode 100644 index 0000000..05e8521 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/paw-print-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/paypal-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/paypal-logo-thin.svg new file mode 100644 index 0000000..5e7a7b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/paypal-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/peace-thin.svg b/phosphor_orig/SVGs Flat/thin/peace-thin.svg new file mode 100644 index 0000000..63dd876 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/peace-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pen-nib-straight-thin.svg b/phosphor_orig/SVGs Flat/thin/pen-nib-straight-thin.svg new file mode 100644 index 0000000..5725d38 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pen-nib-straight-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pen-nib-thin.svg b/phosphor_orig/SVGs Flat/thin/pen-nib-thin.svg new file mode 100644 index 0000000..1317ace --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pen-nib-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pen-thin.svg b/phosphor_orig/SVGs Flat/thin/pen-thin.svg new file mode 100644 index 0000000..9f9223e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pen-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pencil-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/pencil-circle-thin.svg new file mode 100644 index 0000000..f5070e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pencil-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pencil-line-thin.svg b/phosphor_orig/SVGs Flat/thin/pencil-line-thin.svg new file mode 100644 index 0000000..acaeeb7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pencil-line-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pencil-ruler-thin.svg b/phosphor_orig/SVGs Flat/thin/pencil-ruler-thin.svg new file mode 100644 index 0000000..28f8865 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pencil-ruler-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pencil-simple-line-thin.svg b/phosphor_orig/SVGs Flat/thin/pencil-simple-line-thin.svg new file mode 100644 index 0000000..09b1dd7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pencil-simple-line-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pencil-simple-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/pencil-simple-slash-thin.svg new file mode 100644 index 0000000..9736b52 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pencil-simple-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pencil-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/pencil-simple-thin.svg new file mode 100644 index 0000000..d5321c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pencil-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pencil-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/pencil-slash-thin.svg new file mode 100644 index 0000000..ec5889d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pencil-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pencil-thin.svg b/phosphor_orig/SVGs Flat/thin/pencil-thin.svg new file mode 100644 index 0000000..4087572 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pencil-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pentagon-thin.svg b/phosphor_orig/SVGs Flat/thin/pentagon-thin.svg new file mode 100644 index 0000000..13ad775 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pentagon-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pentagram-thin.svg b/phosphor_orig/SVGs Flat/thin/pentagram-thin.svg new file mode 100644 index 0000000..7eefa37 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pentagram-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pepper-thin.svg b/phosphor_orig/SVGs Flat/thin/pepper-thin.svg new file mode 100644 index 0000000..94b68b3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pepper-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/percent-thin.svg b/phosphor_orig/SVGs Flat/thin/percent-thin.svg new file mode 100644 index 0000000..de34a7a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/percent-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/person-arms-spread-thin.svg b/phosphor_orig/SVGs Flat/thin/person-arms-spread-thin.svg new file mode 100644 index 0000000..96be3a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/person-arms-spread-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/person-simple-bike-thin.svg b/phosphor_orig/SVGs Flat/thin/person-simple-bike-thin.svg new file mode 100644 index 0000000..750e293 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/person-simple-bike-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/person-simple-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/person-simple-circle-thin.svg new file mode 100644 index 0000000..9329ad0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/person-simple-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/person-simple-hike-thin.svg b/phosphor_orig/SVGs Flat/thin/person-simple-hike-thin.svg new file mode 100644 index 0000000..d7eb570 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/person-simple-hike-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/person-simple-run-thin.svg b/phosphor_orig/SVGs Flat/thin/person-simple-run-thin.svg new file mode 100644 index 0000000..f8cfec2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/person-simple-run-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/person-simple-ski-thin.svg b/phosphor_orig/SVGs Flat/thin/person-simple-ski-thin.svg new file mode 100644 index 0000000..0a680a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/person-simple-ski-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/person-simple-snowboard-thin.svg b/phosphor_orig/SVGs Flat/thin/person-simple-snowboard-thin.svg new file mode 100644 index 0000000..5ead557 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/person-simple-snowboard-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/person-simple-swim-thin.svg b/phosphor_orig/SVGs Flat/thin/person-simple-swim-thin.svg new file mode 100644 index 0000000..e20aa35 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/person-simple-swim-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/person-simple-tai-chi-thin.svg b/phosphor_orig/SVGs Flat/thin/person-simple-tai-chi-thin.svg new file mode 100644 index 0000000..5640045 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/person-simple-tai-chi-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/person-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/person-simple-thin.svg new file mode 100644 index 0000000..ada92a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/person-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/person-simple-throw-thin.svg b/phosphor_orig/SVGs Flat/thin/person-simple-throw-thin.svg new file mode 100644 index 0000000..1a0cf42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/person-simple-throw-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/person-simple-walk-thin.svg b/phosphor_orig/SVGs Flat/thin/person-simple-walk-thin.svg new file mode 100644 index 0000000..32f6294 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/person-simple-walk-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/person-thin.svg b/phosphor_orig/SVGs Flat/thin/person-thin.svg new file mode 100644 index 0000000..8413181 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/person-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/perspective-thin.svg b/phosphor_orig/SVGs Flat/thin/perspective-thin.svg new file mode 100644 index 0000000..c724c22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/perspective-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/phone-call-thin.svg b/phosphor_orig/SVGs Flat/thin/phone-call-thin.svg new file mode 100644 index 0000000..89cca4f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/phone-call-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/phone-disconnect-thin.svg b/phosphor_orig/SVGs Flat/thin/phone-disconnect-thin.svg new file mode 100644 index 0000000..b7190e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/phone-disconnect-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/phone-incoming-thin.svg b/phosphor_orig/SVGs Flat/thin/phone-incoming-thin.svg new file mode 100644 index 0000000..36edfb1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/phone-incoming-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/phone-list-thin.svg b/phosphor_orig/SVGs Flat/thin/phone-list-thin.svg new file mode 100644 index 0000000..e4a0d0b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/phone-list-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/phone-outgoing-thin.svg b/phosphor_orig/SVGs Flat/thin/phone-outgoing-thin.svg new file mode 100644 index 0000000..1ec7a24 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/phone-outgoing-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/phone-pause-thin.svg b/phosphor_orig/SVGs Flat/thin/phone-pause-thin.svg new file mode 100644 index 0000000..f0df687 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/phone-pause-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/phone-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/phone-plus-thin.svg new file mode 100644 index 0000000..549f95f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/phone-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/phone-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/phone-slash-thin.svg new file mode 100644 index 0000000..c9432fb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/phone-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/phone-thin.svg b/phosphor_orig/SVGs Flat/thin/phone-thin.svg new file mode 100644 index 0000000..24bd4e6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/phone-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/phone-transfer-thin.svg b/phosphor_orig/SVGs Flat/thin/phone-transfer-thin.svg new file mode 100644 index 0000000..bc1ec40 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/phone-transfer-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/phone-x-thin.svg b/phosphor_orig/SVGs Flat/thin/phone-x-thin.svg new file mode 100644 index 0000000..6205660 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/phone-x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/phosphor-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/phosphor-logo-thin.svg new file mode 100644 index 0000000..b06e3b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/phosphor-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pi-thin.svg b/phosphor_orig/SVGs Flat/thin/pi-thin.svg new file mode 100644 index 0000000..b341033 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pi-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/piano-keys-thin.svg b/phosphor_orig/SVGs Flat/thin/piano-keys-thin.svg new file mode 100644 index 0000000..fe02c27 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/piano-keys-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/picnic-table-thin.svg b/phosphor_orig/SVGs Flat/thin/picnic-table-thin.svg new file mode 100644 index 0000000..f58b562 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/picnic-table-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/picture-in-picture-thin.svg b/phosphor_orig/SVGs Flat/thin/picture-in-picture-thin.svg new file mode 100644 index 0000000..81a7522 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/picture-in-picture-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/piggy-bank-thin.svg b/phosphor_orig/SVGs Flat/thin/piggy-bank-thin.svg new file mode 100644 index 0000000..d320db4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/piggy-bank-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pill-thin.svg b/phosphor_orig/SVGs Flat/thin/pill-thin.svg new file mode 100644 index 0000000..7d653a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pill-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/ping-pong-thin.svg b/phosphor_orig/SVGs Flat/thin/ping-pong-thin.svg new file mode 100644 index 0000000..12c974e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/ping-pong-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pint-glass-thin.svg b/phosphor_orig/SVGs Flat/thin/pint-glass-thin.svg new file mode 100644 index 0000000..30e9a95 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pint-glass-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pinterest-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/pinterest-logo-thin.svg new file mode 100644 index 0000000..e2c75c3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pinterest-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pinwheel-thin.svg b/phosphor_orig/SVGs Flat/thin/pinwheel-thin.svg new file mode 100644 index 0000000..056f4ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pinwheel-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pipe-thin.svg b/phosphor_orig/SVGs Flat/thin/pipe-thin.svg new file mode 100644 index 0000000..5220fd2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pipe-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pipe-wrench-thin.svg b/phosphor_orig/SVGs Flat/thin/pipe-wrench-thin.svg new file mode 100644 index 0000000..d6941b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pipe-wrench-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pix-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/pix-logo-thin.svg new file mode 100644 index 0000000..c2dc5d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pix-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pizza-thin.svg b/phosphor_orig/SVGs Flat/thin/pizza-thin.svg new file mode 100644 index 0000000..1212081 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pizza-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/placeholder-thin.svg b/phosphor_orig/SVGs Flat/thin/placeholder-thin.svg new file mode 100644 index 0000000..3b55af2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/placeholder-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/planet-thin.svg b/phosphor_orig/SVGs Flat/thin/planet-thin.svg new file mode 100644 index 0000000..ab21c38 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/planet-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/plant-thin.svg b/phosphor_orig/SVGs Flat/thin/plant-thin.svg new file mode 100644 index 0000000..54403ce --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/plant-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/play-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/play-circle-thin.svg new file mode 100644 index 0000000..6a215e3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/play-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/play-pause-thin.svg b/phosphor_orig/SVGs Flat/thin/play-pause-thin.svg new file mode 100644 index 0000000..078e280 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/play-pause-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/play-thin.svg b/phosphor_orig/SVGs Flat/thin/play-thin.svg new file mode 100644 index 0000000..75418a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/play-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/playlist-thin.svg b/phosphor_orig/SVGs Flat/thin/playlist-thin.svg new file mode 100644 index 0000000..586cd70 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/playlist-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/plug-charging-thin.svg b/phosphor_orig/SVGs Flat/thin/plug-charging-thin.svg new file mode 100644 index 0000000..6f3eb8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/plug-charging-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/plug-thin.svg b/phosphor_orig/SVGs Flat/thin/plug-thin.svg new file mode 100644 index 0000000..8e6918c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/plug-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/plugs-connected-thin.svg b/phosphor_orig/SVGs Flat/thin/plugs-connected-thin.svg new file mode 100644 index 0000000..e2ec464 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/plugs-connected-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/plugs-thin.svg b/phosphor_orig/SVGs Flat/thin/plugs-thin.svg new file mode 100644 index 0000000..7df21a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/plugs-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/plus-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/plus-circle-thin.svg new file mode 100644 index 0000000..7d8251f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/plus-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/plus-minus-thin.svg b/phosphor_orig/SVGs Flat/thin/plus-minus-thin.svg new file mode 100644 index 0000000..71cf1c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/plus-minus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/plus-square-thin.svg b/phosphor_orig/SVGs Flat/thin/plus-square-thin.svg new file mode 100644 index 0000000..a0a8495 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/plus-square-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/plus-thin.svg b/phosphor_orig/SVGs Flat/thin/plus-thin.svg new file mode 100644 index 0000000..f9fe10a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/poker-chip-thin.svg b/phosphor_orig/SVGs Flat/thin/poker-chip-thin.svg new file mode 100644 index 0000000..52c58e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/poker-chip-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/police-car-thin.svg b/phosphor_orig/SVGs Flat/thin/police-car-thin.svg new file mode 100644 index 0000000..69ca30c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/police-car-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/polygon-thin.svg b/phosphor_orig/SVGs Flat/thin/polygon-thin.svg new file mode 100644 index 0000000..fa58bc1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/polygon-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/popcorn-thin.svg b/phosphor_orig/SVGs Flat/thin/popcorn-thin.svg new file mode 100644 index 0000000..a31f37d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/popcorn-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/popsicle-thin.svg b/phosphor_orig/SVGs Flat/thin/popsicle-thin.svg new file mode 100644 index 0000000..7a9ea6f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/popsicle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/potted-plant-thin.svg b/phosphor_orig/SVGs Flat/thin/potted-plant-thin.svg new file mode 100644 index 0000000..2a3ff6a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/potted-plant-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/power-thin.svg b/phosphor_orig/SVGs Flat/thin/power-thin.svg new file mode 100644 index 0000000..02d9f71 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/power-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/prescription-thin.svg b/phosphor_orig/SVGs Flat/thin/prescription-thin.svg new file mode 100644 index 0000000..e1d5f88 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/prescription-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/presentation-chart-thin.svg b/phosphor_orig/SVGs Flat/thin/presentation-chart-thin.svg new file mode 100644 index 0000000..cfe140f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/presentation-chart-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/presentation-thin.svg b/phosphor_orig/SVGs Flat/thin/presentation-thin.svg new file mode 100644 index 0000000..669c079 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/presentation-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/printer-thin.svg b/phosphor_orig/SVGs Flat/thin/printer-thin.svg new file mode 100644 index 0000000..0b4df42 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/printer-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/prohibit-inset-thin.svg b/phosphor_orig/SVGs Flat/thin/prohibit-inset-thin.svg new file mode 100644 index 0000000..e7ab048 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/prohibit-inset-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/prohibit-thin.svg b/phosphor_orig/SVGs Flat/thin/prohibit-thin.svg new file mode 100644 index 0000000..7e007b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/prohibit-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/projector-screen-chart-thin.svg b/phosphor_orig/SVGs Flat/thin/projector-screen-chart-thin.svg new file mode 100644 index 0000000..e12edd5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/projector-screen-chart-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/projector-screen-thin.svg b/phosphor_orig/SVGs Flat/thin/projector-screen-thin.svg new file mode 100644 index 0000000..9bc1ea0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/projector-screen-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/pulse-thin.svg b/phosphor_orig/SVGs Flat/thin/pulse-thin.svg new file mode 100644 index 0000000..19082a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/pulse-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/push-pin-simple-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/push-pin-simple-slash-thin.svg new file mode 100644 index 0000000..3bec05d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/push-pin-simple-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/push-pin-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/push-pin-simple-thin.svg new file mode 100644 index 0000000..36af618 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/push-pin-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/push-pin-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/push-pin-slash-thin.svg new file mode 100644 index 0000000..1071646 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/push-pin-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/push-pin-thin.svg b/phosphor_orig/SVGs Flat/thin/push-pin-thin.svg new file mode 100644 index 0000000..fe0f286 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/push-pin-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/puzzle-piece-thin.svg b/phosphor_orig/SVGs Flat/thin/puzzle-piece-thin.svg new file mode 100644 index 0000000..fddf835 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/puzzle-piece-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/qr-code-thin.svg b/phosphor_orig/SVGs Flat/thin/qr-code-thin.svg new file mode 100644 index 0000000..2fd5870 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/qr-code-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/question-mark-thin.svg b/phosphor_orig/SVGs Flat/thin/question-mark-thin.svg new file mode 100644 index 0000000..a6f52f8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/question-mark-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/question-thin.svg b/phosphor_orig/SVGs Flat/thin/question-thin.svg new file mode 100644 index 0000000..4c25cd0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/question-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/queue-thin.svg b/phosphor_orig/SVGs Flat/thin/queue-thin.svg new file mode 100644 index 0000000..f7550b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/queue-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/quotes-thin.svg b/phosphor_orig/SVGs Flat/thin/quotes-thin.svg new file mode 100644 index 0000000..f69ffc8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/quotes-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/rabbit-thin.svg b/phosphor_orig/SVGs Flat/thin/rabbit-thin.svg new file mode 100644 index 0000000..aff0849 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/rabbit-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/racquet-thin.svg b/phosphor_orig/SVGs Flat/thin/racquet-thin.svg new file mode 100644 index 0000000..92fdd16 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/racquet-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/radical-thin.svg b/phosphor_orig/SVGs Flat/thin/radical-thin.svg new file mode 100644 index 0000000..52cb9e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/radical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/radio-button-thin.svg b/phosphor_orig/SVGs Flat/thin/radio-button-thin.svg new file mode 100644 index 0000000..556edec --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/radio-button-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/radio-thin.svg b/phosphor_orig/SVGs Flat/thin/radio-thin.svg new file mode 100644 index 0000000..466ff6a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/radio-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/radioactive-thin.svg b/phosphor_orig/SVGs Flat/thin/radioactive-thin.svg new file mode 100644 index 0000000..c679797 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/radioactive-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/rainbow-cloud-thin.svg b/phosphor_orig/SVGs Flat/thin/rainbow-cloud-thin.svg new file mode 100644 index 0000000..4df5c2a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/rainbow-cloud-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/rainbow-thin.svg b/phosphor_orig/SVGs Flat/thin/rainbow-thin.svg new file mode 100644 index 0000000..a668a5e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/rainbow-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/ranking-thin.svg b/phosphor_orig/SVGs Flat/thin/ranking-thin.svg new file mode 100644 index 0000000..6be5a80 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/ranking-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/read-cv-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/read-cv-logo-thin.svg new file mode 100644 index 0000000..7de61fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/read-cv-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/receipt-thin.svg b/phosphor_orig/SVGs Flat/thin/receipt-thin.svg new file mode 100644 index 0000000..22bbd91 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/receipt-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/receipt-x-thin.svg b/phosphor_orig/SVGs Flat/thin/receipt-x-thin.svg new file mode 100644 index 0000000..7533274 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/receipt-x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/record-thin.svg b/phosphor_orig/SVGs Flat/thin/record-thin.svg new file mode 100644 index 0000000..b3b19b2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/record-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/rectangle-dashed-thin.svg b/phosphor_orig/SVGs Flat/thin/rectangle-dashed-thin.svg new file mode 100644 index 0000000..78b5915 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/rectangle-dashed-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/rectangle-thin.svg b/phosphor_orig/SVGs Flat/thin/rectangle-thin.svg new file mode 100644 index 0000000..72523c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/rectangle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/recycle-thin.svg b/phosphor_orig/SVGs Flat/thin/recycle-thin.svg new file mode 100644 index 0000000..bd9ab8c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/recycle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/reddit-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/reddit-logo-thin.svg new file mode 100644 index 0000000..86f8cf8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/reddit-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/repeat-once-thin.svg b/phosphor_orig/SVGs Flat/thin/repeat-once-thin.svg new file mode 100644 index 0000000..5f7d4e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/repeat-once-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/repeat-thin.svg b/phosphor_orig/SVGs Flat/thin/repeat-thin.svg new file mode 100644 index 0000000..a8888f0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/repeat-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/replit-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/replit-logo-thin.svg new file mode 100644 index 0000000..9feb847 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/replit-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/resize-thin.svg b/phosphor_orig/SVGs Flat/thin/resize-thin.svg new file mode 100644 index 0000000..b0195c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/resize-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/rewind-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/rewind-circle-thin.svg new file mode 100644 index 0000000..6b5793a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/rewind-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/rewind-thin.svg b/phosphor_orig/SVGs Flat/thin/rewind-thin.svg new file mode 100644 index 0000000..b1b1b56 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/rewind-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/road-horizon-thin.svg b/phosphor_orig/SVGs Flat/thin/road-horizon-thin.svg new file mode 100644 index 0000000..4e2fcf2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/road-horizon-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/robot-thin.svg b/phosphor_orig/SVGs Flat/thin/robot-thin.svg new file mode 100644 index 0000000..23400cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/robot-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/rocket-launch-thin.svg b/phosphor_orig/SVGs Flat/thin/rocket-launch-thin.svg new file mode 100644 index 0000000..0439169 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/rocket-launch-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/rocket-thin.svg b/phosphor_orig/SVGs Flat/thin/rocket-thin.svg new file mode 100644 index 0000000..90c45a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/rocket-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/rows-plus-bottom-thin.svg b/phosphor_orig/SVGs Flat/thin/rows-plus-bottom-thin.svg new file mode 100644 index 0000000..7139bd2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/rows-plus-bottom-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/rows-plus-top-thin.svg b/phosphor_orig/SVGs Flat/thin/rows-plus-top-thin.svg new file mode 100644 index 0000000..7afedb4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/rows-plus-top-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/rows-thin.svg b/phosphor_orig/SVGs Flat/thin/rows-thin.svg new file mode 100644 index 0000000..2eb6dbe --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/rows-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/rss-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/rss-simple-thin.svg new file mode 100644 index 0000000..121d3e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/rss-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/rss-thin.svg b/phosphor_orig/SVGs Flat/thin/rss-thin.svg new file mode 100644 index 0000000..2131fa1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/rss-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/rug-thin.svg b/phosphor_orig/SVGs Flat/thin/rug-thin.svg new file mode 100644 index 0000000..de0a7cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/rug-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/ruler-thin.svg b/phosphor_orig/SVGs Flat/thin/ruler-thin.svg new file mode 100644 index 0000000..9926745 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/ruler-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sailboat-thin.svg b/phosphor_orig/SVGs Flat/thin/sailboat-thin.svg new file mode 100644 index 0000000..0b936b4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sailboat-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/scales-thin.svg b/phosphor_orig/SVGs Flat/thin/scales-thin.svg new file mode 100644 index 0000000..aaf2bae --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/scales-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/scan-smiley-thin.svg b/phosphor_orig/SVGs Flat/thin/scan-smiley-thin.svg new file mode 100644 index 0000000..99c6a0e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/scan-smiley-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/scan-thin.svg b/phosphor_orig/SVGs Flat/thin/scan-thin.svg new file mode 100644 index 0000000..663fd9b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/scan-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/scissors-thin.svg b/phosphor_orig/SVGs Flat/thin/scissors-thin.svg new file mode 100644 index 0000000..25a4b49 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/scissors-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/scooter-thin.svg b/phosphor_orig/SVGs Flat/thin/scooter-thin.svg new file mode 100644 index 0000000..6bf4695 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/scooter-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/screencast-thin.svg b/phosphor_orig/SVGs Flat/thin/screencast-thin.svg new file mode 100644 index 0000000..8079b7f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/screencast-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/screwdriver-thin.svg b/phosphor_orig/SVGs Flat/thin/screwdriver-thin.svg new file mode 100644 index 0000000..910735c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/screwdriver-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/scribble-loop-thin.svg b/phosphor_orig/SVGs Flat/thin/scribble-loop-thin.svg new file mode 100644 index 0000000..cdf3131 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/scribble-loop-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/scribble-thin.svg b/phosphor_orig/SVGs Flat/thin/scribble-thin.svg new file mode 100644 index 0000000..1c822ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/scribble-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/scroll-thin.svg b/phosphor_orig/SVGs Flat/thin/scroll-thin.svg new file mode 100644 index 0000000..f371eb6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/scroll-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/seal-check-thin.svg b/phosphor_orig/SVGs Flat/thin/seal-check-thin.svg new file mode 100644 index 0000000..4ba7cf7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/seal-check-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/seal-percent-thin.svg b/phosphor_orig/SVGs Flat/thin/seal-percent-thin.svg new file mode 100644 index 0000000..f1c3f34 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/seal-percent-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/seal-question-thin.svg b/phosphor_orig/SVGs Flat/thin/seal-question-thin.svg new file mode 100644 index 0000000..de5e89e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/seal-question-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/seal-thin.svg b/phosphor_orig/SVGs Flat/thin/seal-thin.svg new file mode 100644 index 0000000..43d5524 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/seal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/seal-warning-thin.svg b/phosphor_orig/SVGs Flat/thin/seal-warning-thin.svg new file mode 100644 index 0000000..efdae77 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/seal-warning-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/seat-thin.svg b/phosphor_orig/SVGs Flat/thin/seat-thin.svg new file mode 100644 index 0000000..6ac38cd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/seat-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/seatbelt-thin.svg b/phosphor_orig/SVGs Flat/thin/seatbelt-thin.svg new file mode 100644 index 0000000..077a62b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/seatbelt-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/security-camera-thin.svg b/phosphor_orig/SVGs Flat/thin/security-camera-thin.svg new file mode 100644 index 0000000..df88ef4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/security-camera-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/selection-all-thin.svg b/phosphor_orig/SVGs Flat/thin/selection-all-thin.svg new file mode 100644 index 0000000..4dccf31 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/selection-all-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/selection-background-thin.svg b/phosphor_orig/SVGs Flat/thin/selection-background-thin.svg new file mode 100644 index 0000000..12710d9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/selection-background-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/selection-foreground-thin.svg b/phosphor_orig/SVGs Flat/thin/selection-foreground-thin.svg new file mode 100644 index 0000000..6c01c62 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/selection-foreground-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/selection-inverse-thin.svg b/phosphor_orig/SVGs Flat/thin/selection-inverse-thin.svg new file mode 100644 index 0000000..7cfd9a7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/selection-inverse-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/selection-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/selection-plus-thin.svg new file mode 100644 index 0000000..2f098fc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/selection-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/selection-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/selection-slash-thin.svg new file mode 100644 index 0000000..35ca6d2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/selection-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/selection-thin.svg b/phosphor_orig/SVGs Flat/thin/selection-thin.svg new file mode 100644 index 0000000..b43e59a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/selection-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shapes-thin.svg b/phosphor_orig/SVGs Flat/thin/shapes-thin.svg new file mode 100644 index 0000000..fe513e9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shapes-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/share-fat-thin.svg b/phosphor_orig/SVGs Flat/thin/share-fat-thin.svg new file mode 100644 index 0000000..7b8024b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/share-fat-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/share-network-thin.svg b/phosphor_orig/SVGs Flat/thin/share-network-thin.svg new file mode 100644 index 0000000..c17da03 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/share-network-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/share-thin.svg b/phosphor_orig/SVGs Flat/thin/share-thin.svg new file mode 100644 index 0000000..beddd0c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/share-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shield-check-thin.svg b/phosphor_orig/SVGs Flat/thin/shield-check-thin.svg new file mode 100644 index 0000000..24bf065 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shield-check-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shield-checkered-thin.svg b/phosphor_orig/SVGs Flat/thin/shield-checkered-thin.svg new file mode 100644 index 0000000..458a2c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shield-checkered-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shield-chevron-thin.svg b/phosphor_orig/SVGs Flat/thin/shield-chevron-thin.svg new file mode 100644 index 0000000..152384c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shield-chevron-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shield-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/shield-plus-thin.svg new file mode 100644 index 0000000..07df839 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shield-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shield-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/shield-slash-thin.svg new file mode 100644 index 0000000..8d1c5af --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shield-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shield-star-thin.svg b/phosphor_orig/SVGs Flat/thin/shield-star-thin.svg new file mode 100644 index 0000000..c061bf9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shield-star-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shield-thin.svg b/phosphor_orig/SVGs Flat/thin/shield-thin.svg new file mode 100644 index 0000000..1aa1fff --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shield-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shield-warning-thin.svg b/phosphor_orig/SVGs Flat/thin/shield-warning-thin.svg new file mode 100644 index 0000000..befdc9a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shield-warning-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shipping-container-thin.svg b/phosphor_orig/SVGs Flat/thin/shipping-container-thin.svg new file mode 100644 index 0000000..9d80866 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shipping-container-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shirt-folded-thin.svg b/phosphor_orig/SVGs Flat/thin/shirt-folded-thin.svg new file mode 100644 index 0000000..47f7e58 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shirt-folded-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shooting-star-thin.svg b/phosphor_orig/SVGs Flat/thin/shooting-star-thin.svg new file mode 100644 index 0000000..442bf8c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shooting-star-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shopping-bag-open-thin.svg b/phosphor_orig/SVGs Flat/thin/shopping-bag-open-thin.svg new file mode 100644 index 0000000..cb78cb8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shopping-bag-open-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shopping-bag-thin.svg b/phosphor_orig/SVGs Flat/thin/shopping-bag-thin.svg new file mode 100644 index 0000000..70b61ad --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shopping-bag-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shopping-cart-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/shopping-cart-simple-thin.svg new file mode 100644 index 0000000..60ad3bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shopping-cart-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shopping-cart-thin.svg b/phosphor_orig/SVGs Flat/thin/shopping-cart-thin.svg new file mode 100644 index 0000000..9134516 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shopping-cart-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shovel-thin.svg b/phosphor_orig/SVGs Flat/thin/shovel-thin.svg new file mode 100644 index 0000000..1fe99da --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shovel-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shower-thin.svg b/phosphor_orig/SVGs Flat/thin/shower-thin.svg new file mode 100644 index 0000000..91ae71b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shower-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shrimp-thin.svg b/phosphor_orig/SVGs Flat/thin/shrimp-thin.svg new file mode 100644 index 0000000..9fef440 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shrimp-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shuffle-angular-thin.svg b/phosphor_orig/SVGs Flat/thin/shuffle-angular-thin.svg new file mode 100644 index 0000000..f34d67a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shuffle-angular-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shuffle-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/shuffle-simple-thin.svg new file mode 100644 index 0000000..675701e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shuffle-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/shuffle-thin.svg b/phosphor_orig/SVGs Flat/thin/shuffle-thin.svg new file mode 100644 index 0000000..63ce5f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/shuffle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sidebar-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/sidebar-simple-thin.svg new file mode 100644 index 0000000..3cac8d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sidebar-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sidebar-thin.svg b/phosphor_orig/SVGs Flat/thin/sidebar-thin.svg new file mode 100644 index 0000000..5192dda --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sidebar-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sigma-thin.svg b/phosphor_orig/SVGs Flat/thin/sigma-thin.svg new file mode 100644 index 0000000..cdff1ce --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sigma-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sign-in-thin.svg b/phosphor_orig/SVGs Flat/thin/sign-in-thin.svg new file mode 100644 index 0000000..c1c4a53 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sign-in-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sign-out-thin.svg b/phosphor_orig/SVGs Flat/thin/sign-out-thin.svg new file mode 100644 index 0000000..2254d70 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sign-out-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/signature-thin.svg b/phosphor_orig/SVGs Flat/thin/signature-thin.svg new file mode 100644 index 0000000..2b23b08 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/signature-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/signpost-thin.svg b/phosphor_orig/SVGs Flat/thin/signpost-thin.svg new file mode 100644 index 0000000..18019f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/signpost-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sim-card-thin.svg b/phosphor_orig/SVGs Flat/thin/sim-card-thin.svg new file mode 100644 index 0000000..c8a5c09 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sim-card-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/siren-thin.svg b/phosphor_orig/SVGs Flat/thin/siren-thin.svg new file mode 100644 index 0000000..1a3adcc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/siren-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sketch-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/sketch-logo-thin.svg new file mode 100644 index 0000000..5753f53 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sketch-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/skip-back-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/skip-back-circle-thin.svg new file mode 100644 index 0000000..165792d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/skip-back-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/skip-back-thin.svg b/phosphor_orig/SVGs Flat/thin/skip-back-thin.svg new file mode 100644 index 0000000..c242ee9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/skip-back-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/skip-forward-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/skip-forward-circle-thin.svg new file mode 100644 index 0000000..55858de --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/skip-forward-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/skip-forward-thin.svg b/phosphor_orig/SVGs Flat/thin/skip-forward-thin.svg new file mode 100644 index 0000000..6dd5ac7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/skip-forward-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/skull-thin.svg b/phosphor_orig/SVGs Flat/thin/skull-thin.svg new file mode 100644 index 0000000..ee98a93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/skull-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/skype-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/skype-logo-thin.svg new file mode 100644 index 0000000..5c82050 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/skype-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/slack-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/slack-logo-thin.svg new file mode 100644 index 0000000..74cb0aa --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/slack-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sliders-horizontal-thin.svg b/phosphor_orig/SVGs Flat/thin/sliders-horizontal-thin.svg new file mode 100644 index 0000000..ec3e053 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sliders-horizontal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sliders-thin.svg b/phosphor_orig/SVGs Flat/thin/sliders-thin.svg new file mode 100644 index 0000000..20c84ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sliders-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/slideshow-thin.svg b/phosphor_orig/SVGs Flat/thin/slideshow-thin.svg new file mode 100644 index 0000000..deb9a2f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/slideshow-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/smiley-angry-thin.svg b/phosphor_orig/SVGs Flat/thin/smiley-angry-thin.svg new file mode 100644 index 0000000..8c4a91e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/smiley-angry-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/smiley-blank-thin.svg b/phosphor_orig/SVGs Flat/thin/smiley-blank-thin.svg new file mode 100644 index 0000000..cf119b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/smiley-blank-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/smiley-meh-thin.svg b/phosphor_orig/SVGs Flat/thin/smiley-meh-thin.svg new file mode 100644 index 0000000..05b4470 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/smiley-meh-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/smiley-melting-thin.svg b/phosphor_orig/SVGs Flat/thin/smiley-melting-thin.svg new file mode 100644 index 0000000..bbc2d28 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/smiley-melting-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/smiley-nervous-thin.svg b/phosphor_orig/SVGs Flat/thin/smiley-nervous-thin.svg new file mode 100644 index 0000000..6d59fb3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/smiley-nervous-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/smiley-sad-thin.svg b/phosphor_orig/SVGs Flat/thin/smiley-sad-thin.svg new file mode 100644 index 0000000..7b8e379 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/smiley-sad-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/smiley-sticker-thin.svg b/phosphor_orig/SVGs Flat/thin/smiley-sticker-thin.svg new file mode 100644 index 0000000..5313395 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/smiley-sticker-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/smiley-thin.svg b/phosphor_orig/SVGs Flat/thin/smiley-thin.svg new file mode 100644 index 0000000..8065007 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/smiley-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/smiley-wink-thin.svg b/phosphor_orig/SVGs Flat/thin/smiley-wink-thin.svg new file mode 100644 index 0000000..774f7d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/smiley-wink-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/smiley-x-eyes-thin.svg b/phosphor_orig/SVGs Flat/thin/smiley-x-eyes-thin.svg new file mode 100644 index 0000000..96aefee --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/smiley-x-eyes-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/snapchat-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/snapchat-logo-thin.svg new file mode 100644 index 0000000..f7c8a71 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/snapchat-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sneaker-move-thin.svg b/phosphor_orig/SVGs Flat/thin/sneaker-move-thin.svg new file mode 100644 index 0000000..512e22b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sneaker-move-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sneaker-thin.svg b/phosphor_orig/SVGs Flat/thin/sneaker-thin.svg new file mode 100644 index 0000000..b17f964 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sneaker-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/snowflake-thin.svg b/phosphor_orig/SVGs Flat/thin/snowflake-thin.svg new file mode 100644 index 0000000..ddb7f44 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/snowflake-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/soccer-ball-thin.svg b/phosphor_orig/SVGs Flat/thin/soccer-ball-thin.svg new file mode 100644 index 0000000..009af91 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/soccer-ball-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sock-thin.svg b/phosphor_orig/SVGs Flat/thin/sock-thin.svg new file mode 100644 index 0000000..165b927 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sock-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/solar-panel-thin.svg b/phosphor_orig/SVGs Flat/thin/solar-panel-thin.svg new file mode 100644 index 0000000..9b0fb49 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/solar-panel-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/solar-roof-thin.svg b/phosphor_orig/SVGs Flat/thin/solar-roof-thin.svg new file mode 100644 index 0000000..b4108bf --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/solar-roof-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sort-ascending-thin.svg b/phosphor_orig/SVGs Flat/thin/sort-ascending-thin.svg new file mode 100644 index 0000000..3599290 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sort-ascending-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sort-descending-thin.svg b/phosphor_orig/SVGs Flat/thin/sort-descending-thin.svg new file mode 100644 index 0000000..dbfe1a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sort-descending-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/soundcloud-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/soundcloud-logo-thin.svg new file mode 100644 index 0000000..7471d8a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/soundcloud-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/spade-thin.svg b/phosphor_orig/SVGs Flat/thin/spade-thin.svg new file mode 100644 index 0000000..a1cd494 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/spade-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sparkle-thin.svg b/phosphor_orig/SVGs Flat/thin/sparkle-thin.svg new file mode 100644 index 0000000..02c1a3a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sparkle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/speaker-hifi-thin.svg b/phosphor_orig/SVGs Flat/thin/speaker-hifi-thin.svg new file mode 100644 index 0000000..d9fd9f6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/speaker-hifi-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/speaker-high-thin.svg b/phosphor_orig/SVGs Flat/thin/speaker-high-thin.svg new file mode 100644 index 0000000..25befd5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/speaker-high-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/speaker-low-thin.svg b/phosphor_orig/SVGs Flat/thin/speaker-low-thin.svg new file mode 100644 index 0000000..1bb7088 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/speaker-low-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/speaker-none-thin.svg b/phosphor_orig/SVGs Flat/thin/speaker-none-thin.svg new file mode 100644 index 0000000..87faa3f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/speaker-none-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/speaker-simple-high-thin.svg b/phosphor_orig/SVGs Flat/thin/speaker-simple-high-thin.svg new file mode 100644 index 0000000..977b7fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/speaker-simple-high-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/speaker-simple-low-thin.svg b/phosphor_orig/SVGs Flat/thin/speaker-simple-low-thin.svg new file mode 100644 index 0000000..9ddf079 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/speaker-simple-low-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/speaker-simple-none-thin.svg b/phosphor_orig/SVGs Flat/thin/speaker-simple-none-thin.svg new file mode 100644 index 0000000..89a130c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/speaker-simple-none-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/speaker-simple-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/speaker-simple-slash-thin.svg new file mode 100644 index 0000000..e6015c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/speaker-simple-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/speaker-simple-x-thin.svg b/phosphor_orig/SVGs Flat/thin/speaker-simple-x-thin.svg new file mode 100644 index 0000000..a2be3b9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/speaker-simple-x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/speaker-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/speaker-slash-thin.svg new file mode 100644 index 0000000..8dbc362 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/speaker-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/speaker-x-thin.svg b/phosphor_orig/SVGs Flat/thin/speaker-x-thin.svg new file mode 100644 index 0000000..213c60c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/speaker-x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/speedometer-thin.svg b/phosphor_orig/SVGs Flat/thin/speedometer-thin.svg new file mode 100644 index 0000000..cb202c3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/speedometer-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sphere-thin.svg b/phosphor_orig/SVGs Flat/thin/sphere-thin.svg new file mode 100644 index 0000000..d204136 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sphere-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/spinner-ball-thin.svg b/phosphor_orig/SVGs Flat/thin/spinner-ball-thin.svg new file mode 100644 index 0000000..91cd6f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/spinner-ball-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/spinner-gap-thin.svg b/phosphor_orig/SVGs Flat/thin/spinner-gap-thin.svg new file mode 100644 index 0000000..7890dbb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/spinner-gap-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/spinner-thin.svg b/phosphor_orig/SVGs Flat/thin/spinner-thin.svg new file mode 100644 index 0000000..69cc1a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/spinner-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/spiral-thin.svg b/phosphor_orig/SVGs Flat/thin/spiral-thin.svg new file mode 100644 index 0000000..46709bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/spiral-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/split-horizontal-thin.svg b/phosphor_orig/SVGs Flat/thin/split-horizontal-thin.svg new file mode 100644 index 0000000..21c03bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/split-horizontal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/split-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/split-vertical-thin.svg new file mode 100644 index 0000000..8f6f344 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/split-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/spotify-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/spotify-logo-thin.svg new file mode 100644 index 0000000..d30ec6c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/spotify-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/spray-bottle-thin.svg b/phosphor_orig/SVGs Flat/thin/spray-bottle-thin.svg new file mode 100644 index 0000000..e037f46 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/spray-bottle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/square-half-bottom-thin.svg b/phosphor_orig/SVGs Flat/thin/square-half-bottom-thin.svg new file mode 100644 index 0000000..bf47b79 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/square-half-bottom-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/square-half-thin.svg b/phosphor_orig/SVGs Flat/thin/square-half-thin.svg new file mode 100644 index 0000000..c7db291 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/square-half-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/square-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/square-logo-thin.svg new file mode 100644 index 0000000..4200716 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/square-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/square-split-horizontal-thin.svg b/phosphor_orig/SVGs Flat/thin/square-split-horizontal-thin.svg new file mode 100644 index 0000000..f42444c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/square-split-horizontal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/square-split-vertical-thin.svg b/phosphor_orig/SVGs Flat/thin/square-split-vertical-thin.svg new file mode 100644 index 0000000..10fe7f4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/square-split-vertical-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/square-thin.svg b/phosphor_orig/SVGs Flat/thin/square-thin.svg new file mode 100644 index 0000000..eaed1af --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/square-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/squares-four-thin.svg b/phosphor_orig/SVGs Flat/thin/squares-four-thin.svg new file mode 100644 index 0000000..6049179 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/squares-four-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/stack-minus-thin.svg b/phosphor_orig/SVGs Flat/thin/stack-minus-thin.svg new file mode 100644 index 0000000..90014e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/stack-minus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/stack-overflow-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/stack-overflow-logo-thin.svg new file mode 100644 index 0000000..e47e254 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/stack-overflow-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/stack-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/stack-plus-thin.svg new file mode 100644 index 0000000..34519e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/stack-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/stack-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/stack-simple-thin.svg new file mode 100644 index 0000000..fec7951 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/stack-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/stack-thin.svg b/phosphor_orig/SVGs Flat/thin/stack-thin.svg new file mode 100644 index 0000000..4614cc0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/stack-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/stairs-thin.svg b/phosphor_orig/SVGs Flat/thin/stairs-thin.svg new file mode 100644 index 0000000..a087cc6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/stairs-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/stamp-thin.svg b/phosphor_orig/SVGs Flat/thin/stamp-thin.svg new file mode 100644 index 0000000..6bc84e1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/stamp-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/standard-definition-thin.svg b/phosphor_orig/SVGs Flat/thin/standard-definition-thin.svg new file mode 100644 index 0000000..18d3cc7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/standard-definition-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/star-and-crescent-thin.svg b/phosphor_orig/SVGs Flat/thin/star-and-crescent-thin.svg new file mode 100644 index 0000000..956f435 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/star-and-crescent-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/star-four-thin.svg b/phosphor_orig/SVGs Flat/thin/star-four-thin.svg new file mode 100644 index 0000000..6c545f5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/star-four-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/star-half-thin.svg b/phosphor_orig/SVGs Flat/thin/star-half-thin.svg new file mode 100644 index 0000000..7576a74 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/star-half-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/star-of-david-thin.svg b/phosphor_orig/SVGs Flat/thin/star-of-david-thin.svg new file mode 100644 index 0000000..74a5d11 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/star-of-david-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/star-thin.svg b/phosphor_orig/SVGs Flat/thin/star-thin.svg new file mode 100644 index 0000000..f95d46d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/star-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/steam-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/steam-logo-thin.svg new file mode 100644 index 0000000..59635d0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/steam-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/steering-wheel-thin.svg b/phosphor_orig/SVGs Flat/thin/steering-wheel-thin.svg new file mode 100644 index 0000000..b3ec99d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/steering-wheel-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/steps-thin.svg b/phosphor_orig/SVGs Flat/thin/steps-thin.svg new file mode 100644 index 0000000..65f5da9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/steps-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/stethoscope-thin.svg b/phosphor_orig/SVGs Flat/thin/stethoscope-thin.svg new file mode 100644 index 0000000..10e01f1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/stethoscope-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sticker-thin.svg b/phosphor_orig/SVGs Flat/thin/sticker-thin.svg new file mode 100644 index 0000000..94ce9b8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sticker-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/stool-thin.svg b/phosphor_orig/SVGs Flat/thin/stool-thin.svg new file mode 100644 index 0000000..e85c467 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/stool-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/stop-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/stop-circle-thin.svg new file mode 100644 index 0000000..8804109 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/stop-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/stop-thin.svg b/phosphor_orig/SVGs Flat/thin/stop-thin.svg new file mode 100644 index 0000000..6b4f79f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/stop-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/storefront-thin.svg b/phosphor_orig/SVGs Flat/thin/storefront-thin.svg new file mode 100644 index 0000000..4f1b128 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/storefront-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/strategy-thin.svg b/phosphor_orig/SVGs Flat/thin/strategy-thin.svg new file mode 100644 index 0000000..1342b6e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/strategy-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/stripe-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/stripe-logo-thin.svg new file mode 100644 index 0000000..a9b3108 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/stripe-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/student-thin.svg b/phosphor_orig/SVGs Flat/thin/student-thin.svg new file mode 100644 index 0000000..e386de9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/student-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/subset-of-thin.svg b/phosphor_orig/SVGs Flat/thin/subset-of-thin.svg new file mode 100644 index 0000000..ff4295d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/subset-of-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/subset-proper-of-thin.svg b/phosphor_orig/SVGs Flat/thin/subset-proper-of-thin.svg new file mode 100644 index 0000000..16ec86d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/subset-proper-of-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/subtitles-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/subtitles-slash-thin.svg new file mode 100644 index 0000000..6e03d9c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/subtitles-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/subtitles-thin.svg b/phosphor_orig/SVGs Flat/thin/subtitles-thin.svg new file mode 100644 index 0000000..7cf0f1a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/subtitles-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/subtract-square-thin.svg b/phosphor_orig/SVGs Flat/thin/subtract-square-thin.svg new file mode 100644 index 0000000..0962f2b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/subtract-square-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/subtract-thin.svg b/phosphor_orig/SVGs Flat/thin/subtract-thin.svg new file mode 100644 index 0000000..9541359 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/subtract-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/subway-thin.svg b/phosphor_orig/SVGs Flat/thin/subway-thin.svg new file mode 100644 index 0000000..58fd4d5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/subway-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/suitcase-rolling-thin.svg b/phosphor_orig/SVGs Flat/thin/suitcase-rolling-thin.svg new file mode 100644 index 0000000..1047037 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/suitcase-rolling-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/suitcase-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/suitcase-simple-thin.svg new file mode 100644 index 0000000..4dd8d93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/suitcase-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/suitcase-thin.svg b/phosphor_orig/SVGs Flat/thin/suitcase-thin.svg new file mode 100644 index 0000000..9c251de --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/suitcase-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sun-dim-thin.svg b/phosphor_orig/SVGs Flat/thin/sun-dim-thin.svg new file mode 100644 index 0000000..8fbf710 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sun-dim-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sun-horizon-thin.svg b/phosphor_orig/SVGs Flat/thin/sun-horizon-thin.svg new file mode 100644 index 0000000..913454a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sun-horizon-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sun-thin.svg b/phosphor_orig/SVGs Flat/thin/sun-thin.svg new file mode 100644 index 0000000..7f89443 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sun-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sunglasses-thin.svg b/phosphor_orig/SVGs Flat/thin/sunglasses-thin.svg new file mode 100644 index 0000000..919ffbd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sunglasses-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/superset-of-thin.svg b/phosphor_orig/SVGs Flat/thin/superset-of-thin.svg new file mode 100644 index 0000000..95afe31 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/superset-of-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/superset-proper-of-thin.svg b/phosphor_orig/SVGs Flat/thin/superset-proper-of-thin.svg new file mode 100644 index 0000000..6692700 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/superset-proper-of-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/swap-thin.svg b/phosphor_orig/SVGs Flat/thin/swap-thin.svg new file mode 100644 index 0000000..dfa2d21 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/swap-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/swatches-thin.svg b/phosphor_orig/SVGs Flat/thin/swatches-thin.svg new file mode 100644 index 0000000..af84a78 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/swatches-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/swimming-pool-thin.svg b/phosphor_orig/SVGs Flat/thin/swimming-pool-thin.svg new file mode 100644 index 0000000..2b06bfe --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/swimming-pool-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/sword-thin.svg b/phosphor_orig/SVGs Flat/thin/sword-thin.svg new file mode 100644 index 0000000..406e501 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/sword-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/synagogue-thin.svg b/phosphor_orig/SVGs Flat/thin/synagogue-thin.svg new file mode 100644 index 0000000..327c9ff --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/synagogue-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/syringe-thin.svg b/phosphor_orig/SVGs Flat/thin/syringe-thin.svg new file mode 100644 index 0000000..55d59bd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/syringe-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/t-shirt-thin.svg b/phosphor_orig/SVGs Flat/thin/t-shirt-thin.svg new file mode 100644 index 0000000..653ca26 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/t-shirt-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/table-thin.svg b/phosphor_orig/SVGs Flat/thin/table-thin.svg new file mode 100644 index 0000000..54bbd0b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/table-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tabs-thin.svg b/phosphor_orig/SVGs Flat/thin/tabs-thin.svg new file mode 100644 index 0000000..549c633 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tabs-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tag-chevron-thin.svg b/phosphor_orig/SVGs Flat/thin/tag-chevron-thin.svg new file mode 100644 index 0000000..f23111a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tag-chevron-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tag-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/tag-simple-thin.svg new file mode 100644 index 0000000..7ca34e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tag-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tag-thin.svg b/phosphor_orig/SVGs Flat/thin/tag-thin.svg new file mode 100644 index 0000000..8d580bc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tag-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/target-thin.svg b/phosphor_orig/SVGs Flat/thin/target-thin.svg new file mode 100644 index 0000000..03c0f26 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/target-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/taxi-thin.svg b/phosphor_orig/SVGs Flat/thin/taxi-thin.svg new file mode 100644 index 0000000..80b7268 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/taxi-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tea-bag-thin.svg b/phosphor_orig/SVGs Flat/thin/tea-bag-thin.svg new file mode 100644 index 0000000..a856ce0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tea-bag-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/telegram-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/telegram-logo-thin.svg new file mode 100644 index 0000000..4cf40e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/telegram-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/television-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/television-simple-thin.svg new file mode 100644 index 0000000..1aa5278 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/television-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/television-thin.svg b/phosphor_orig/SVGs Flat/thin/television-thin.svg new file mode 100644 index 0000000..b75e609 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/television-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tennis-ball-thin.svg b/phosphor_orig/SVGs Flat/thin/tennis-ball-thin.svg new file mode 100644 index 0000000..7856f0c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tennis-ball-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tent-thin.svg b/phosphor_orig/SVGs Flat/thin/tent-thin.svg new file mode 100644 index 0000000..1b22ff6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tent-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/terminal-thin.svg b/phosphor_orig/SVGs Flat/thin/terminal-thin.svg new file mode 100644 index 0000000..24db944 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/terminal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/terminal-window-thin.svg b/phosphor_orig/SVGs Flat/thin/terminal-window-thin.svg new file mode 100644 index 0000000..633b1c6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/terminal-window-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/test-tube-thin.svg b/phosphor_orig/SVGs Flat/thin/test-tube-thin.svg new file mode 100644 index 0000000..4ca607b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/test-tube-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-a-underline-thin.svg b/phosphor_orig/SVGs Flat/thin/text-a-underline-thin.svg new file mode 100644 index 0000000..3d39b57 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-a-underline-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-aa-thin.svg b/phosphor_orig/SVGs Flat/thin/text-aa-thin.svg new file mode 100644 index 0000000..86d33dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-aa-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-align-center-thin.svg b/phosphor_orig/SVGs Flat/thin/text-align-center-thin.svg new file mode 100644 index 0000000..9b4eab7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-align-center-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-align-justify-thin.svg b/phosphor_orig/SVGs Flat/thin/text-align-justify-thin.svg new file mode 100644 index 0000000..330b7ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-align-justify-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-align-left-thin.svg b/phosphor_orig/SVGs Flat/thin/text-align-left-thin.svg new file mode 100644 index 0000000..8c89b2d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-align-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-align-right-thin.svg b/phosphor_orig/SVGs Flat/thin/text-align-right-thin.svg new file mode 100644 index 0000000..335ca6c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-align-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-b-thin.svg b/phosphor_orig/SVGs Flat/thin/text-b-thin.svg new file mode 100644 index 0000000..f0b394a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-b-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-columns-thin.svg b/phosphor_orig/SVGs Flat/thin/text-columns-thin.svg new file mode 100644 index 0000000..66c8c4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-columns-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-h-five-thin.svg b/phosphor_orig/SVGs Flat/thin/text-h-five-thin.svg new file mode 100644 index 0000000..3bdb11d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-h-five-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-h-four-thin.svg b/phosphor_orig/SVGs Flat/thin/text-h-four-thin.svg new file mode 100644 index 0000000..45e919b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-h-four-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-h-one-thin.svg b/phosphor_orig/SVGs Flat/thin/text-h-one-thin.svg new file mode 100644 index 0000000..d3339d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-h-one-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-h-six-thin.svg b/phosphor_orig/SVGs Flat/thin/text-h-six-thin.svg new file mode 100644 index 0000000..69ee240 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-h-six-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-h-thin.svg b/phosphor_orig/SVGs Flat/thin/text-h-thin.svg new file mode 100644 index 0000000..fd93b6f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-h-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-h-three-thin.svg b/phosphor_orig/SVGs Flat/thin/text-h-three-thin.svg new file mode 100644 index 0000000..c588cc9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-h-three-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-h-two-thin.svg b/phosphor_orig/SVGs Flat/thin/text-h-two-thin.svg new file mode 100644 index 0000000..74851c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-h-two-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-indent-thin.svg b/phosphor_orig/SVGs Flat/thin/text-indent-thin.svg new file mode 100644 index 0000000..459b79d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-indent-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-italic-thin.svg b/phosphor_orig/SVGs Flat/thin/text-italic-thin.svg new file mode 100644 index 0000000..5fc98a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-italic-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-outdent-thin.svg b/phosphor_orig/SVGs Flat/thin/text-outdent-thin.svg new file mode 100644 index 0000000..190bf73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-outdent-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-strikethrough-thin.svg b/phosphor_orig/SVGs Flat/thin/text-strikethrough-thin.svg new file mode 100644 index 0000000..a59e575 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-strikethrough-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-subscript-thin.svg b/phosphor_orig/SVGs Flat/thin/text-subscript-thin.svg new file mode 100644 index 0000000..4f5e6c8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-subscript-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-superscript-thin.svg b/phosphor_orig/SVGs Flat/thin/text-superscript-thin.svg new file mode 100644 index 0000000..9df737f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-superscript-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-t-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/text-t-slash-thin.svg new file mode 100644 index 0000000..10f71ab --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-t-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-t-thin.svg b/phosphor_orig/SVGs Flat/thin/text-t-thin.svg new file mode 100644 index 0000000..f95cf73 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-t-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/text-underline-thin.svg b/phosphor_orig/SVGs Flat/thin/text-underline-thin.svg new file mode 100644 index 0000000..5cf6988 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/text-underline-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/textbox-thin.svg b/phosphor_orig/SVGs Flat/thin/textbox-thin.svg new file mode 100644 index 0000000..4931f64 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/textbox-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/thermometer-cold-thin.svg b/phosphor_orig/SVGs Flat/thin/thermometer-cold-thin.svg new file mode 100644 index 0000000..f9393e5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/thermometer-cold-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/thermometer-hot-thin.svg b/phosphor_orig/SVGs Flat/thin/thermometer-hot-thin.svg new file mode 100644 index 0000000..1c2fa8d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/thermometer-hot-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/thermometer-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/thermometer-simple-thin.svg new file mode 100644 index 0000000..35fa1d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/thermometer-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/thermometer-thin.svg b/phosphor_orig/SVGs Flat/thin/thermometer-thin.svg new file mode 100644 index 0000000..0d4179f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/thermometer-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/threads-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/threads-logo-thin.svg new file mode 100644 index 0000000..1420480 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/threads-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/three-d-thin.svg b/phosphor_orig/SVGs Flat/thin/three-d-thin.svg new file mode 100644 index 0000000..f7f98a4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/three-d-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/thumbs-down-thin.svg b/phosphor_orig/SVGs Flat/thin/thumbs-down-thin.svg new file mode 100644 index 0000000..c7ae3f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/thumbs-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/thumbs-up-thin.svg b/phosphor_orig/SVGs Flat/thin/thumbs-up-thin.svg new file mode 100644 index 0000000..c885a4a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/thumbs-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/ticket-thin.svg b/phosphor_orig/SVGs Flat/thin/ticket-thin.svg new file mode 100644 index 0000000..cad253f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/ticket-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tidal-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/tidal-logo-thin.svg new file mode 100644 index 0000000..b8cfd93 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tidal-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tiktok-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/tiktok-logo-thin.svg new file mode 100644 index 0000000..5ee715c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tiktok-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tilde-thin.svg b/phosphor_orig/SVGs Flat/thin/tilde-thin.svg new file mode 100644 index 0000000..c925cd4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tilde-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/timer-thin.svg b/phosphor_orig/SVGs Flat/thin/timer-thin.svg new file mode 100644 index 0000000..8229f94 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/timer-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tip-jar-thin.svg b/phosphor_orig/SVGs Flat/thin/tip-jar-thin.svg new file mode 100644 index 0000000..24784a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tip-jar-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tipi-thin.svg b/phosphor_orig/SVGs Flat/thin/tipi-thin.svg new file mode 100644 index 0000000..d85ec2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tipi-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tire-thin.svg b/phosphor_orig/SVGs Flat/thin/tire-thin.svg new file mode 100644 index 0000000..affd0b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tire-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/toggle-left-thin.svg b/phosphor_orig/SVGs Flat/thin/toggle-left-thin.svg new file mode 100644 index 0000000..ff23d8c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/toggle-left-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/toggle-right-thin.svg b/phosphor_orig/SVGs Flat/thin/toggle-right-thin.svg new file mode 100644 index 0000000..29ef3d8 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/toggle-right-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/toilet-paper-thin.svg b/phosphor_orig/SVGs Flat/thin/toilet-paper-thin.svg new file mode 100644 index 0000000..d3b4f6a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/toilet-paper-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/toilet-thin.svg b/phosphor_orig/SVGs Flat/thin/toilet-thin.svg new file mode 100644 index 0000000..c939211 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/toilet-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/toolbox-thin.svg b/phosphor_orig/SVGs Flat/thin/toolbox-thin.svg new file mode 100644 index 0000000..6c55a8d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/toolbox-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tooth-thin.svg b/phosphor_orig/SVGs Flat/thin/tooth-thin.svg new file mode 100644 index 0000000..eadb618 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tooth-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tornado-thin.svg b/phosphor_orig/SVGs Flat/thin/tornado-thin.svg new file mode 100644 index 0000000..d7eb6b0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tornado-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tote-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/tote-simple-thin.svg new file mode 100644 index 0000000..630b4a1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tote-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tote-thin.svg b/phosphor_orig/SVGs Flat/thin/tote-thin.svg new file mode 100644 index 0000000..2e75a9e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tote-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/towel-thin.svg b/phosphor_orig/SVGs Flat/thin/towel-thin.svg new file mode 100644 index 0000000..d13ff86 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/towel-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tractor-thin.svg b/phosphor_orig/SVGs Flat/thin/tractor-thin.svg new file mode 100644 index 0000000..0e8acde --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tractor-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/trademark-registered-thin.svg b/phosphor_orig/SVGs Flat/thin/trademark-registered-thin.svg new file mode 100644 index 0000000..2a192ff --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/trademark-registered-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/trademark-thin.svg b/phosphor_orig/SVGs Flat/thin/trademark-thin.svg new file mode 100644 index 0000000..345b926 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/trademark-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/traffic-cone-thin.svg b/phosphor_orig/SVGs Flat/thin/traffic-cone-thin.svg new file mode 100644 index 0000000..9d8dcd1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/traffic-cone-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/traffic-sign-thin.svg b/phosphor_orig/SVGs Flat/thin/traffic-sign-thin.svg new file mode 100644 index 0000000..89680dc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/traffic-sign-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/traffic-signal-thin.svg b/phosphor_orig/SVGs Flat/thin/traffic-signal-thin.svg new file mode 100644 index 0000000..cfcf860 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/traffic-signal-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/train-regional-thin.svg b/phosphor_orig/SVGs Flat/thin/train-regional-thin.svg new file mode 100644 index 0000000..df75944 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/train-regional-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/train-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/train-simple-thin.svg new file mode 100644 index 0000000..c7e8aae --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/train-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/train-thin.svg b/phosphor_orig/SVGs Flat/thin/train-thin.svg new file mode 100644 index 0000000..8d90a48 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/train-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tram-thin.svg b/phosphor_orig/SVGs Flat/thin/tram-thin.svg new file mode 100644 index 0000000..881206c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tram-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/translate-thin.svg b/phosphor_orig/SVGs Flat/thin/translate-thin.svg new file mode 100644 index 0000000..79010d3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/translate-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/trash-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/trash-simple-thin.svg new file mode 100644 index 0000000..d26b99b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/trash-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/trash-thin.svg b/phosphor_orig/SVGs Flat/thin/trash-thin.svg new file mode 100644 index 0000000..1e0a626 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/trash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tray-arrow-down-thin.svg b/phosphor_orig/SVGs Flat/thin/tray-arrow-down-thin.svg new file mode 100644 index 0000000..15098af --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tray-arrow-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tray-arrow-up-thin.svg b/phosphor_orig/SVGs Flat/thin/tray-arrow-up-thin.svg new file mode 100644 index 0000000..27b5330 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tray-arrow-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tray-thin.svg b/phosphor_orig/SVGs Flat/thin/tray-thin.svg new file mode 100644 index 0000000..8b5e82b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tray-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/treasure-chest-thin.svg b/phosphor_orig/SVGs Flat/thin/treasure-chest-thin.svg new file mode 100644 index 0000000..36b3a63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/treasure-chest-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tree-evergreen-thin.svg b/phosphor_orig/SVGs Flat/thin/tree-evergreen-thin.svg new file mode 100644 index 0000000..d9ce70b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tree-evergreen-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tree-palm-thin.svg b/phosphor_orig/SVGs Flat/thin/tree-palm-thin.svg new file mode 100644 index 0000000..856464f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tree-palm-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tree-structure-thin.svg b/phosphor_orig/SVGs Flat/thin/tree-structure-thin.svg new file mode 100644 index 0000000..28c4a3b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tree-structure-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tree-thin.svg b/phosphor_orig/SVGs Flat/thin/tree-thin.svg new file mode 100644 index 0000000..097f88c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tree-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tree-view-thin.svg b/phosphor_orig/SVGs Flat/thin/tree-view-thin.svg new file mode 100644 index 0000000..8ab6988 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tree-view-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/trend-down-thin.svg b/phosphor_orig/SVGs Flat/thin/trend-down-thin.svg new file mode 100644 index 0000000..831e9c7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/trend-down-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/trend-up-thin.svg b/phosphor_orig/SVGs Flat/thin/trend-up-thin.svg new file mode 100644 index 0000000..e97ed1c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/trend-up-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/triangle-dashed-thin.svg b/phosphor_orig/SVGs Flat/thin/triangle-dashed-thin.svg new file mode 100644 index 0000000..9939dd6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/triangle-dashed-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/triangle-thin.svg b/phosphor_orig/SVGs Flat/thin/triangle-thin.svg new file mode 100644 index 0000000..6d642cc --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/triangle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/trolley-suitcase-thin.svg b/phosphor_orig/SVGs Flat/thin/trolley-suitcase-thin.svg new file mode 100644 index 0000000..727de3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/trolley-suitcase-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/trolley-thin.svg b/phosphor_orig/SVGs Flat/thin/trolley-thin.svg new file mode 100644 index 0000000..5657697 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/trolley-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/trophy-thin.svg b/phosphor_orig/SVGs Flat/thin/trophy-thin.svg new file mode 100644 index 0000000..cfa99c1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/trophy-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/truck-thin.svg b/phosphor_orig/SVGs Flat/thin/truck-thin.svg new file mode 100644 index 0000000..20c6b7c --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/truck-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/truck-trailer-thin.svg b/phosphor_orig/SVGs Flat/thin/truck-trailer-thin.svg new file mode 100644 index 0000000..4badf75 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/truck-trailer-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/tumblr-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/tumblr-logo-thin.svg new file mode 100644 index 0000000..1dba952 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/tumblr-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/twitch-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/twitch-logo-thin.svg new file mode 100644 index 0000000..31a1988 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/twitch-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/twitter-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/twitter-logo-thin.svg new file mode 100644 index 0000000..b86ae91 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/twitter-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/umbrella-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/umbrella-simple-thin.svg new file mode 100644 index 0000000..3cc1c4d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/umbrella-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/umbrella-thin.svg b/phosphor_orig/SVGs Flat/thin/umbrella-thin.svg new file mode 100644 index 0000000..821bf54 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/umbrella-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/union-thin.svg b/phosphor_orig/SVGs Flat/thin/union-thin.svg new file mode 100644 index 0000000..afa4924 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/union-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/unite-square-thin.svg b/phosphor_orig/SVGs Flat/thin/unite-square-thin.svg new file mode 100644 index 0000000..a649b6d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/unite-square-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/unite-thin.svg b/phosphor_orig/SVGs Flat/thin/unite-thin.svg new file mode 100644 index 0000000..f3b3ac0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/unite-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/upload-simple-thin.svg b/phosphor_orig/SVGs Flat/thin/upload-simple-thin.svg new file mode 100644 index 0000000..4ff27d4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/upload-simple-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/upload-thin.svg b/phosphor_orig/SVGs Flat/thin/upload-thin.svg new file mode 100644 index 0000000..719ed1f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/upload-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/usb-thin.svg b/phosphor_orig/SVGs Flat/thin/usb-thin.svg new file mode 100644 index 0000000..6da91a9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/usb-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-check-thin.svg b/phosphor_orig/SVGs Flat/thin/user-check-thin.svg new file mode 100644 index 0000000..8de0a92 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-check-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-circle-check-thin.svg b/phosphor_orig/SVGs Flat/thin/user-circle-check-thin.svg new file mode 100644 index 0000000..2e62568 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-circle-check-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-circle-dashed-thin.svg b/phosphor_orig/SVGs Flat/thin/user-circle-dashed-thin.svg new file mode 100644 index 0000000..dc5c4e0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-circle-dashed-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-circle-gear-thin.svg b/phosphor_orig/SVGs Flat/thin/user-circle-gear-thin.svg new file mode 100644 index 0000000..b6abf2e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-circle-gear-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-circle-minus-thin.svg b/phosphor_orig/SVGs Flat/thin/user-circle-minus-thin.svg new file mode 100644 index 0000000..405b8a6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-circle-minus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-circle-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/user-circle-plus-thin.svg new file mode 100644 index 0000000..acfbec6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-circle-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/user-circle-thin.svg new file mode 100644 index 0000000..b15c7c0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-focus-thin.svg b/phosphor_orig/SVGs Flat/thin/user-focus-thin.svg new file mode 100644 index 0000000..dcfefe1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-focus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-gear-thin.svg b/phosphor_orig/SVGs Flat/thin/user-gear-thin.svg new file mode 100644 index 0000000..99a24e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-gear-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-list-thin.svg b/phosphor_orig/SVGs Flat/thin/user-list-thin.svg new file mode 100644 index 0000000..50eb914 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-list-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-minus-thin.svg b/phosphor_orig/SVGs Flat/thin/user-minus-thin.svg new file mode 100644 index 0000000..651612f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-minus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-plus-thin.svg b/phosphor_orig/SVGs Flat/thin/user-plus-thin.svg new file mode 100644 index 0000000..d796088 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-plus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-rectangle-thin.svg b/phosphor_orig/SVGs Flat/thin/user-rectangle-thin.svg new file mode 100644 index 0000000..471bad9 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-rectangle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-sound-thin.svg b/phosphor_orig/SVGs Flat/thin/user-sound-thin.svg new file mode 100644 index 0000000..91f4281 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-sound-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-square-thin.svg b/phosphor_orig/SVGs Flat/thin/user-square-thin.svg new file mode 100644 index 0000000..c4ac35b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-square-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-switch-thin.svg b/phosphor_orig/SVGs Flat/thin/user-switch-thin.svg new file mode 100644 index 0000000..0dada14 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-switch-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/user-thin.svg b/phosphor_orig/SVGs Flat/thin/user-thin.svg new file mode 100644 index 0000000..01c653e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/user-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/users-four-thin.svg b/phosphor_orig/SVGs Flat/thin/users-four-thin.svg new file mode 100644 index 0000000..6e5b26b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/users-four-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/users-thin.svg b/phosphor_orig/SVGs Flat/thin/users-thin.svg new file mode 100644 index 0000000..3d2df99 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/users-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/users-three-thin.svg b/phosphor_orig/SVGs Flat/thin/users-three-thin.svg new file mode 100644 index 0000000..233282d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/users-three-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/van-thin.svg b/phosphor_orig/SVGs Flat/thin/van-thin.svg new file mode 100644 index 0000000..19a43a0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/van-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/vault-thin.svg b/phosphor_orig/SVGs Flat/thin/vault-thin.svg new file mode 100644 index 0000000..663ab08 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/vault-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/vector-three-thin.svg b/phosphor_orig/SVGs Flat/thin/vector-three-thin.svg new file mode 100644 index 0000000..542b029 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/vector-three-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/vector-two-thin.svg b/phosphor_orig/SVGs Flat/thin/vector-two-thin.svg new file mode 100644 index 0000000..199fd63 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/vector-two-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/vibrate-thin.svg b/phosphor_orig/SVGs Flat/thin/vibrate-thin.svg new file mode 100644 index 0000000..1950329 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/vibrate-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/video-camera-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/video-camera-slash-thin.svg new file mode 100644 index 0000000..b2ae079 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/video-camera-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/video-camera-thin.svg b/phosphor_orig/SVGs Flat/thin/video-camera-thin.svg new file mode 100644 index 0000000..2ddfef4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/video-camera-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/video-conference-thin.svg b/phosphor_orig/SVGs Flat/thin/video-conference-thin.svg new file mode 100644 index 0000000..3b3c92e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/video-conference-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/video-thin.svg b/phosphor_orig/SVGs Flat/thin/video-thin.svg new file mode 100644 index 0000000..4337cd3 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/video-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/vignette-thin.svg b/phosphor_orig/SVGs Flat/thin/vignette-thin.svg new file mode 100644 index 0000000..141fba2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/vignette-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/vinyl-record-thin.svg b/phosphor_orig/SVGs Flat/thin/vinyl-record-thin.svg new file mode 100644 index 0000000..3a589cb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/vinyl-record-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/virtual-reality-thin.svg b/phosphor_orig/SVGs Flat/thin/virtual-reality-thin.svg new file mode 100644 index 0000000..dfdca4e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/virtual-reality-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/virus-thin.svg b/phosphor_orig/SVGs Flat/thin/virus-thin.svg new file mode 100644 index 0000000..4ee1beb --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/virus-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/visor-thin.svg b/phosphor_orig/SVGs Flat/thin/visor-thin.svg new file mode 100644 index 0000000..2eaad00 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/visor-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/voicemail-thin.svg b/phosphor_orig/SVGs Flat/thin/voicemail-thin.svg new file mode 100644 index 0000000..8e3ff62 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/voicemail-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/volleyball-thin.svg b/phosphor_orig/SVGs Flat/thin/volleyball-thin.svg new file mode 100644 index 0000000..45a6209 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/volleyball-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wall-thin.svg b/phosphor_orig/SVGs Flat/thin/wall-thin.svg new file mode 100644 index 0000000..7b74ba4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wall-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wallet-thin.svg b/phosphor_orig/SVGs Flat/thin/wallet-thin.svg new file mode 100644 index 0000000..bb5c406 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wallet-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/warehouse-thin.svg b/phosphor_orig/SVGs Flat/thin/warehouse-thin.svg new file mode 100644 index 0000000..f3c640e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/warehouse-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/warning-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/warning-circle-thin.svg new file mode 100644 index 0000000..63cdcd1 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/warning-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/warning-diamond-thin.svg b/phosphor_orig/SVGs Flat/thin/warning-diamond-thin.svg new file mode 100644 index 0000000..9e199a5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/warning-diamond-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/warning-octagon-thin.svg b/phosphor_orig/SVGs Flat/thin/warning-octagon-thin.svg new file mode 100644 index 0000000..58ba11a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/warning-octagon-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/warning-thin.svg b/phosphor_orig/SVGs Flat/thin/warning-thin.svg new file mode 100644 index 0000000..72464f2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/warning-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/washing-machine-thin.svg b/phosphor_orig/SVGs Flat/thin/washing-machine-thin.svg new file mode 100644 index 0000000..de3c6b5 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/washing-machine-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/watch-thin.svg b/phosphor_orig/SVGs Flat/thin/watch-thin.svg new file mode 100644 index 0000000..f0af385 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/watch-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wave-sawtooth-thin.svg b/phosphor_orig/SVGs Flat/thin/wave-sawtooth-thin.svg new file mode 100644 index 0000000..f5ec4f7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wave-sawtooth-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wave-sine-thin.svg b/phosphor_orig/SVGs Flat/thin/wave-sine-thin.svg new file mode 100644 index 0000000..e8e58e7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wave-sine-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wave-square-thin.svg b/phosphor_orig/SVGs Flat/thin/wave-square-thin.svg new file mode 100644 index 0000000..b12071e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wave-square-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wave-triangle-thin.svg b/phosphor_orig/SVGs Flat/thin/wave-triangle-thin.svg new file mode 100644 index 0000000..6e17ccd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wave-triangle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/waveform-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/waveform-slash-thin.svg new file mode 100644 index 0000000..f5737b6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/waveform-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/waveform-thin.svg b/phosphor_orig/SVGs Flat/thin/waveform-thin.svg new file mode 100644 index 0000000..886f0fe --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/waveform-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/waves-thin.svg b/phosphor_orig/SVGs Flat/thin/waves-thin.svg new file mode 100644 index 0000000..c0eb267 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/waves-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/webcam-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/webcam-slash-thin.svg new file mode 100644 index 0000000..9033ac6 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/webcam-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/webcam-thin.svg b/phosphor_orig/SVGs Flat/thin/webcam-thin.svg new file mode 100644 index 0000000..a81f2c4 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/webcam-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/webhooks-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/webhooks-logo-thin.svg new file mode 100644 index 0000000..71e5f3e --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/webhooks-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wechat-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/wechat-logo-thin.svg new file mode 100644 index 0000000..3d9bdf2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wechat-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/whatsapp-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/whatsapp-logo-thin.svg new file mode 100644 index 0000000..9c55367 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/whatsapp-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wheelchair-motion-thin.svg b/phosphor_orig/SVGs Flat/thin/wheelchair-motion-thin.svg new file mode 100644 index 0000000..4936dda --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wheelchair-motion-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wheelchair-thin.svg b/phosphor_orig/SVGs Flat/thin/wheelchair-thin.svg new file mode 100644 index 0000000..fc6060f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wheelchair-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wifi-high-thin.svg b/phosphor_orig/SVGs Flat/thin/wifi-high-thin.svg new file mode 100644 index 0000000..66224fd --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wifi-high-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wifi-low-thin.svg b/phosphor_orig/SVGs Flat/thin/wifi-low-thin.svg new file mode 100644 index 0000000..8429c22 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wifi-low-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wifi-medium-thin.svg b/phosphor_orig/SVGs Flat/thin/wifi-medium-thin.svg new file mode 100644 index 0000000..fba0559 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wifi-medium-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wifi-none-thin.svg b/phosphor_orig/SVGs Flat/thin/wifi-none-thin.svg new file mode 100644 index 0000000..cc30a0d --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wifi-none-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wifi-slash-thin.svg b/phosphor_orig/SVGs Flat/thin/wifi-slash-thin.svg new file mode 100644 index 0000000..6a0190f --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wifi-slash-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wifi-x-thin.svg b/phosphor_orig/SVGs Flat/thin/wifi-x-thin.svg new file mode 100644 index 0000000..5370ca7 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wifi-x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wind-thin.svg b/phosphor_orig/SVGs Flat/thin/wind-thin.svg new file mode 100644 index 0000000..b54295b --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wind-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/windmill-thin.svg b/phosphor_orig/SVGs Flat/thin/windmill-thin.svg new file mode 100644 index 0000000..c87a017 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/windmill-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/windows-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/windows-logo-thin.svg new file mode 100644 index 0000000..1d89924 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/windows-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wine-thin.svg b/phosphor_orig/SVGs Flat/thin/wine-thin.svg new file mode 100644 index 0000000..6881727 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wine-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/wrench-thin.svg b/phosphor_orig/SVGs Flat/thin/wrench-thin.svg new file mode 100644 index 0000000..49a8b0a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/wrench-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/x-circle-thin.svg b/phosphor_orig/SVGs Flat/thin/x-circle-thin.svg new file mode 100644 index 0000000..347e219 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/x-circle-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/x-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/x-logo-thin.svg new file mode 100644 index 0000000..31d830a --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/x-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/x-square-thin.svg b/phosphor_orig/SVGs Flat/thin/x-square-thin.svg new file mode 100644 index 0000000..c1ee6ea --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/x-square-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/x-thin.svg b/phosphor_orig/SVGs Flat/thin/x-thin.svg new file mode 100644 index 0000000..082fbc2 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/x-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/yarn-thin.svg b/phosphor_orig/SVGs Flat/thin/yarn-thin.svg new file mode 100644 index 0000000..f24dc83 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/yarn-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/yin-yang-thin.svg b/phosphor_orig/SVGs Flat/thin/yin-yang-thin.svg new file mode 100644 index 0000000..46c0cd0 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/yin-yang-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/phosphor_orig/SVGs Flat/thin/youtube-logo-thin.svg b/phosphor_orig/SVGs Flat/thin/youtube-logo-thin.svg new file mode 100644 index 0000000..937bb56 --- /dev/null +++ b/phosphor_orig/SVGs Flat/thin/youtube-logo-thin.svg @@ -0,0 +1 @@ + \ No newline at end of file