listAlphabetically = () => {
let table = `
|24px|16px|Name|Description|
|:--:|:--:|:---|:----------|
`;
for (const [name, icon] of Object.entries(feather.icons)) {
const nativelySized = icon.toSvg();
const smallerSized = icon.toSvg({ width: 16, height: 16 });
const description = icon.tags.join(", ");
table += `|${nativelySized}|${smallerSized}|${name}|${description}|\n`;
}
return md`${table}`;
}