├── Get-SVGL.psd1 ├── Get-SVGL.psm1 ├── LICENSE ├── Private ├── Api │ ├── Get-ApiResponseContent.ps1 │ └── Invoke-ApiRequest.ps1 ├── Find-Svg.ps1 ├── Format-ColumnOutput.ps1 ├── Handlers │ ├── Get-AngularCode.ps1 │ ├── Get-AstroCode.ps1 │ ├── Get-SvelteCode.ps1 │ ├── Get-VueCode.ps1 │ └── Parse-SvgContent.ps1 ├── Invoke-SelectedOption.ps1 ├── Options │ ├── Add-Options.ps1 │ └── Get-TypeScriptPreference.ps1 ├── Read-SelectedOption.ps1 ├── UI │ ├── Format-Table.ps1 │ ├── Get-UserSelection.ps1 │ └── Write-TableHeader.ps1 └── Write-SvgSearchResults.ps1 ├── Public └── Get-Svgl.ps1 ├── README.md ├── images ├── Preview-SVGL.gif └── TanStack_React_Component_Svg.jpg └── react.tsx /Get-SVGL.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Get-SVGL.psd1 -------------------------------------------------------------------------------- /Get-SVGL.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Get-SVGL.psm1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/LICENSE -------------------------------------------------------------------------------- /Private/Api/Get-ApiResponseContent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/Api/Get-ApiResponseContent.ps1 -------------------------------------------------------------------------------- /Private/Api/Invoke-ApiRequest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/Api/Invoke-ApiRequest.ps1 -------------------------------------------------------------------------------- /Private/Find-Svg.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/Find-Svg.ps1 -------------------------------------------------------------------------------- /Private/Format-ColumnOutput.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/Format-ColumnOutput.ps1 -------------------------------------------------------------------------------- /Private/Handlers/Get-AngularCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/Handlers/Get-AngularCode.ps1 -------------------------------------------------------------------------------- /Private/Handlers/Get-AstroCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/Handlers/Get-AstroCode.ps1 -------------------------------------------------------------------------------- /Private/Handlers/Get-SvelteCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/Handlers/Get-SvelteCode.ps1 -------------------------------------------------------------------------------- /Private/Handlers/Get-VueCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/Handlers/Get-VueCode.ps1 -------------------------------------------------------------------------------- /Private/Handlers/Parse-SvgContent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/Handlers/Parse-SvgContent.ps1 -------------------------------------------------------------------------------- /Private/Invoke-SelectedOption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/Invoke-SelectedOption.ps1 -------------------------------------------------------------------------------- /Private/Options/Add-Options.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/Options/Add-Options.ps1 -------------------------------------------------------------------------------- /Private/Options/Get-TypeScriptPreference.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/Options/Get-TypeScriptPreference.ps1 -------------------------------------------------------------------------------- /Private/Read-SelectedOption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/Read-SelectedOption.ps1 -------------------------------------------------------------------------------- /Private/UI/Format-Table.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/UI/Format-Table.ps1 -------------------------------------------------------------------------------- /Private/UI/Get-UserSelection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/UI/Get-UserSelection.ps1 -------------------------------------------------------------------------------- /Private/UI/Write-TableHeader.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/UI/Write-TableHeader.ps1 -------------------------------------------------------------------------------- /Private/Write-SvgSearchResults.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Private/Write-SvgSearchResults.ps1 -------------------------------------------------------------------------------- /Public/Get-Svgl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/Public/Get-Svgl.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/README.md -------------------------------------------------------------------------------- /images/Preview-SVGL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/images/Preview-SVGL.gif -------------------------------------------------------------------------------- /images/TanStack_React_Component_Svg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spaansba/SVGL-PowerShell/HEAD/images/TanStack_React_Component_Svg.jpg -------------------------------------------------------------------------------- /react.tsx: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------