[featured_image]
Download
Download is available until [expire_date]
  • Version
  • Download 0
  • File Size 7.79 MB
  • File Count 1
  • Create Date May 10, 2025
  • Last Updated May 10, 2025

DevIcons

https://github.com/devicons/devicon great collection of free icons.

Meta Data

Column Name Data Description
Name Devicons Name of the Pack
Shortcode devicons Shortcode of the pack used for filtering
Github Link https://github.com/devicons/devicon Github Repository Link
Total Total Number of Icons
Author DiTheodore Vorillas Author of the Icon Pack
Author Link vorillaz (Theodore Vorillas) Link to the Author
Icon SVG SVG for the Pack Logo, or
Logo Use 32x32 from the img folder 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
FI1 path d path fill='{{IconColor}} d

PowerShell script to create csv from repository.

# Free Icons

$counter = 1
$file = "D:reeicons-20250428.csv"
write-host "Saving Free Icons"
$setName = "free-icons"
$path = "D:ree-iconssvgs*.svg"
$icons = get-childitem -File $path -recurse
ForEach($icon in $icons){
    [string]$string = Get-Content $icon.FullName;
    $dec =  $icon.Name.Replace(".svg","").Split("-")[0]
    
    $objResults = New-Object PSObject -Property @{
        pp_id = $counter;
        pp_name = $icon.Name.Replace(".svg","").Replace("-"," ").Replace($dec+" ","").Trim();
        pp_svg = $string.Replace("""","'");
        pp_pack = $setName
        pp_size = "512"
        pp_category = $icon.Name.Replace(".svg","").Split("-")[0]
    }
    $counter++
    $objResults | Export-CSV $file -Append -NoTypeInformation -force
}
write-host "Finished"

Leave a Comment

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *