mirror of
https://github.com/simple-icons/simple-icons.git
synced 2024-12-26 01:13:41 +02:00
ca0e2ac72e
make is possible to import all icons with the SVG content, see example.js for usage Discussion at https://github.com/simple-icons/simple-icons/pull/446
12 lines
310 B
JavaScript
12 lines
310 B
JavaScript
const SimpleIcons = require('./');
|
|
|
|
console.log(SimpleIcons['500px'].svg);
|
|
|
|
/*
|
|
{ title: '500px',
|
|
hex: '0099E5',
|
|
source: 'https://about.500px.com/press',
|
|
name: '500px',
|
|
svg: '<svg aria-labelledby="simpleicons-500px-icon" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">...</svg>' }
|
|
*/
|