mirror of
https://github.com/Mibew/simple-icons.git
synced 2025-01-06 02:08:14 +03:00
fcec7adc8b
* replace index.js entry point * add types.d.ts * Update documentation * Add Typescript usage example * Drop template file * Readd test * Minor change Co-authored-by: Álvaro Mondéjar Rubio <mondejar1994@gmail.com>
20 lines
441 B
JavaScript
20 lines
441 B
JavaScript
import {
|
|
getIconsData,
|
|
getIconSlug,
|
|
slugToVariableName,
|
|
} from '../scripts/utils.js';
|
|
import * as simpleIcons from '../index.mjs';
|
|
import { testIcon } from './test-icon.js';
|
|
|
|
(async () => {
|
|
const icons = await getIconsData();
|
|
|
|
icons.map((icon) => {
|
|
const slug = getIconSlug(icon);
|
|
const variableName = slugToVariableName(slug);
|
|
const subject = simpleIcons[variableName];
|
|
|
|
testIcon(icon, subject, slug);
|
|
});
|
|
})();
|