- Version
- Download 0
- File Size 3.42 MB
- File Count 1
- Create Date May 11, 2025
- Last Updated May 11, 2025
Tabler Icons
Great dashboard icons. https://tabler.io/admin-template
Meta data
Column Name | Data | Description |
---|---|---|
Name | Tabler Icons | Name of the Pack |
Shortcode | tabler | Shortcode of the pack used for filtering |
Github Link | https://github.com/tabler/tabler-icons | Github Repository Link |
Total | Total Number of Icons | |
Author | Tabler | Author of the Icon Pack |
Author Link | https://github.com/tabler | Link to the Author |
Icon SVG | <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 68 68'> <path d='M64.6 16.2C63 9.9 58.1 5 51.8 3.4 40 1.5 28 1.5 16.2 3.4 9.9 5 5 9.9 3.4 16.2 1.5 28 1.5 40 3.4 51.8 5 58.1 9.9 63 16.2 64.6c11.8 1.9 23.8 1.9 35.6 0C58.1 63 63 58.1 64.6 51.8c1.9-11.8 1.9-23.8 0-35.6zM33.3 36.3c-2.8 4.4-6.6 8.2-11.1 11-1.5.9-3.3.9-4.8.1s-2.4-2.3-2.5-4c0-1.7.9-3.3 2.4-4.1 2.3-1.4 4.4-3.2 6.1-5.3-1.8-2.1-3.8-3.8-6.1-5.3-2.3-1.3-3-4.2-1.7-6.4s4.3-2.9 6.5-1.6c4.5 2.8 8.2 6.5 11.1 10.9 1 1.4 1 3.3.1 4.7zM49.2 46H37.8c-2.1 0-3.8-1-3.8-3s1.7-3 3.8-3h11.4c2.1 0 3.8 1 3.8 3s-1.7 3-3.8 3z' fill='#066fd1'/> </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 | currentColor | {{IconColor}} |
2 |
PowerShell script to create csv from repository.
$counter = 1
$file = "D:AppzIconManagerPacksCSV abler-20250511.csv"
write-host "Tabler Icons "
$setName = "tabler"
# Core
$path = "D:AppzIconManagerPacks abler-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 = "24"
pp_category = $path
}
$counter++
$objResults | Export-CSV $file -Append -NoTypeInformation -force
}
write-host "Finished"