You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
uses uFeatherIcons
...
// Returns SVG Codevar HomeIconSVG := GetFeatherIcon('home');
var TelevisionIconSVG := GetFeatherIcon('tv');
var BellIconSVG := GetFeatherIcon('bell');
// Returns SVG Code with Width/Height set to 24var HomeIconSVG := GetFeatherIcon('home', 24);
var TelevisionIconSVG := GetFeatherIcon('tv', 24);
var BellIconSVG := GetFeatherIcon('bell', 24);
// Returns SVG Code with Width/Height set to 24 and color set to purple (#800080):var HomeIconSVG := GetFeatherIcon('home', 24, 'purple');
var TelevisionIconSVG := GetFeatherIcon('tv', 24, '#800080');
var BellIconSVG := GetFeatherIcon('bell', 24, 'purple');
SVG Path Data
uses uFeatherIcons
...
// Returns SVG Path Data Text:var HomeIconSVGPathData := GetFeatherIconPathData('home');
var TelevisionIconSVGPathData := GetFeatherIconPathData('tv');
var BellIconSVGPathData := GetFeatherIconPathData('bell');
// Returns SVG Path Data Text with Width/Height set to 24:var HomeIconSVGPathData := GetFeatherIconPathData('home', 24);
var TelevisionIconSVGPathData := GetFeatherIconPathData('tv', 24);
var BellIconSVGPathData := GetFeatherIconPathData('bell', 24);
// Returns SVG Path Data Text with Width/Height set to 24 and color set to purple (#800080):var HomeIconSVGPathData := GetFeatherIconPathData('home', 24, 'purple');
var TelevisionIconSVGPathData := GetFeatherIconPathData('tv', 24, '#800080');
var BellIconSVGPathData := GetFeatherIconPathData('bell', 24, 'purple');
SVG Base64 Image
uses uFeatherIcons
...
// Returns SVG Base64 Imagevar HomeIconSVGBase64 := GetFeatherIconBase64('home');
var TelevisionIconSVGBase64 := GetFeatherIconBase64('tv');
var BellIconSVGBase64 := GetFeatherIconBase64('bell');
// Returns SVG Base64 Image with Width/Height set to 24var HomeIconSVGBase64 := GetFeatherIconBase64('home', 24);
var TelevisionIconSVGBase64 := GetFeatherIconBase64('tv', 24);
var BellIconSVGBase64 := GetFeatherIconBase64('bell', 24);
// Returns SVG Base64 Image with Width/Height set to 24 and color set to purple (#800080):var HomeIconSVGBase64 := GetFeatherIconBase64('home', 24, 'purple');
var TelevisionIconSVGBase64 := GetFeatherIconBase64('tv', 24, '#800080');
var BellIconSVGBase64 := GetFeatherIconBase64('bell', 24, 'purple');