Arcticons
Meta data
Column Name |
Data |
Description |
Name |
Arcticons |
Name of the Pack |
Shortcode |
arcticons |
Shortcode of the pack used for filtering |
Github Link |
https://github.com/Arcticons-Team/Arcticons |
Github Repository Link |
Total |
|
Total Number of Icons |
Author |
Arcticons Team |
Author of the Icon Pack |
Author Link |
https://github.com/Arcticons-Team |
Link to the Author |
Icon SVG |
|
SVG for the Pack Logo, or |
Logo |
|
PNG or JPG for the Pack Logo |
Icons CSV |
|
CSV FIle of the Icons |
Has Categories |
Yes |
Are categories used to group icons within a pack. |
Transformations
Name |
Transform From |
Transform To |
1 |
#000 |
{{IconColor}} |
PowerShell script to create csv from repository.
$counter = 1
$file = "D:AppzIconManagerPacksCSVrcticons-20250428.csv"
write-host "Saving Arcticons"
$setName = "arcticons"
$path = "D:AppzIconManagerPacksArcticonsiconslack*.svg"
$icons = get-childitem -File $path -recurse
ForEach($icon in $icons){
[string]$string = Get-Content $icon.FullName
$dir = $icon.DirectoryName.Split("");
$dirCount = $dir.Count
$objResults = New-Object PSObject -Property @{
pp_id = $counter;
pp_name = $icon.Name.Replace(".svg","").Replace("_"," ");
pp_svg = $string.Replace("""","'");
pp_pack = $setName
pp_size = "48"
pp_category = $dir[$dirCount -1]
}
$counter++
$objResults | Export-CSV $file -Append -NoTypeInformation -force
}