Skill Icons
Dev Skill Icons from https://skillicons.dev/
Meta data
Column Name |
Data |
Description |
Name |
Skill Icons |
Name of the Pack |
Shortcode |
skill |
Shortcode of the pack used for filtering |
Github Link |
https://github.com/tandpfun/skill-icons |
Github Repository Link |
Total |
|
Total Number of Icons |
Author |
Thijs |
Author of the Icon Pack |
Author Link |
https://skillicons.dev/ |
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 |
PowerShell script to create csv from repository.
$counter = 1
$file = "D:AppzIconManagerPacksCSVskill-20250503.csv"
write-host "Skill Icons Vectors "
$setName = "skill"
# Core
$path = "D:AppzIconManagerPacksskill-iconsicons*.svg"
$icons = get-childitem -File $path -recurse
ForEach($icon in $icons){
[string]$svg = Get-Content $icon.FullName;
# [array]$split = $icon.Name.Split('-')
[string]$path = $icon.DirectoryName.Split('')[-1]
$TextInfo = (Get-Culture).TextInfo
$string = $icon.Name.Replace("-"," ").Replace(".svg","").Trim()
# Capitalize the first letter of each word
$name = $TextInfo.ToTitleCase($string.ToLower())
$name
$path
$objResults = New-Object PSObject -Property @{
pp_id = $counter;
pp_name = $name
pp_svg = $svg.Replace("""","'");
pp_pack = $setName
pp_size = "256"
pp_category = ""
}
$counter++
$objResults | Export-CSV $file -Append -NoTypeInformation -force
}
write-host "Finished"