Iconoir
A high-quality selection of free icons.
Meta Data
Column Name |
Data |
Description |
Name |
Iconoir |
Name of the Pack |
Shortcode |
iconoir |
Shortcode of the pack used for filtering |
Github Link |
https://github.com/iconoir-icons/iconoir |
Github Repository Link |
Total |
|
Total Number of Icons |
Author |
Luca Burgio |
Author of the Icon Pack |
Author Link |
https://iconoir.com/ |
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 |
|
|
PowerShell script to create csv from repository.
$counter = 1
$file = "D:AppzIconManagerPacksCSViconamoon-202500509.csv"
write-host "Saving |Iconamoon Icons"
$setName = "iconamoon"
$path = "D:AppzIconManagerPacksIconaMoonSVG*.svg"
$icons = get-childitem -File $path -recurse
ForEach($icon in $icons){
[string]$svg = Get-Content $icon.FullName;
[string]$path = $icon.DirectoryName.Split('')[-1]
$TextInfo = (Get-Culture).TextInfo
$string = $icon.Name.Replace(".svg","").Replace("_"," ")
# Capitalize the first letter of each word
$name = $TextInfo.ToTitleCase($string.ToLower())
$objResults = New-Object PSObject -Property @{
pp_id = $counter;
pp_name = $name
pp_svg = $svg.Replace("""","'");
pp_pack = $setName
pp_size = "24"
pp_category = $path
}
$counter++
$objResults | Export-CSV $file -Append -NoTypeInformation -force
}
write-host "Finished"