diff --git a/figma-plugins/icon-export-helper/code.js b/figma-plugins/icon-export-helper/code.js
index bb0cb68..17e5435 100644
--- a/figma-plugins/icon-export-helper/code.js
+++ b/figma-plugins/icon-export-helper/code.js
@@ -2,11 +2,19 @@
const page = figma.createPage();
page.name = "Icons for export";
figma.root.appendChild(page);
-// Get all nodes that are components and begin with "Icon/"
-const nodes = figma.currentPage.findAll(node => node.name.indexOf('Icon/') === 0 && node.type == 'COMPONENT_SET');
+let nodes;
+if (figma.currentPage.selection && figma.currentPage.selection.length > 0) {
+ // Go over nodes the user has selected
+ nodes = figma.currentPage.selection;
+}
+else {
+ // Get all nodes that are components and begin with "Icon/"
+ nodes = figma.currentPage.findAll(node => node.name.indexOf('Icon/') === 0 && node.type == 'COMPONENT_SET');
+}
const newNodes = [];
const iconData = {};
const problematicIcons = {};
+let processedIcons = 0;
let svgX = 0;
let svgY = 0;
let pngX = 0;
@@ -308,6 +316,7 @@ for (const node of nodes) {
// exportIcon = false
// }
if (exportIcon === true) {
+ processedIcons++;
exportComponentAsSVG(node, nodeVariant, subFolder);
exportComponentAsPNG(node, nodeVariant, subFolder);
}
@@ -317,6 +326,7 @@ for (const node of nodes) {
}
}
console.log('Problematic icons', problematicIcons);
+console.log('Processed icons', processedIcons);
// Select our new instances for easy export.
page.selection = newNodes;
// Go to our new page.
@@ -327,7 +337,5 @@ textNode.x = 1000;
textNode.resize(1000, 1000);
figma.loadFontAsync({ family: "Roboto", style: "Regular" }).then(() => {
textNode.characters = JSON.stringify(iconData);
+ figma.closePlugin();
});
-// Make sure to close the plugin when you're done. Otherwise the plugin will
-// keep running, which shows the cancel button at the bottom of the screen.
-figma.closePlugin();
diff --git a/figma-plugins/icon-export-helper/code.ts b/figma-plugins/icon-export-helper/code.ts
index 7e3597d..472a1db 100644
--- a/figma-plugins/icon-export-helper/code.ts
+++ b/figma-plugins/icon-export-helper/code.ts
@@ -4,12 +4,19 @@ page.name = "Icons for export"
figma.root.appendChild(page);
-// Get all nodes that are components and begin with "Icon/"
-const nodes = figma.currentPage.findAll(node => node.name.indexOf('Icon/') === 0 && node.type == 'COMPONENT_SET')
+let nodes
+if(figma.currentPage.selection && figma.currentPage.selection.length > 0) {
+ // Go over nodes the user has selected
+ nodes = figma.currentPage.selection
+} else {
+ // Get all nodes that are components and begin with "Icon/"
+ nodes = figma.currentPage.findAll(node => node.name.indexOf('Icon/') === 0 && node.type == 'COMPONENT_SET')
+}
const newNodes = []
const iconData = {}
const problematicIcons = {}
+let processedIcons = 0
let svgX = 0
let svgY = 0
@@ -377,6 +384,8 @@ for (const node of nodes) {
// }
if(exportIcon === true) {
+ processedIcons++
+
exportComponentAsSVG(node, nodeVariant, subFolder)
exportComponentAsPNG(node, nodeVariant, subFolder)
}
@@ -387,6 +396,7 @@ for (const node of nodes) {
}
console.log('Problematic icons', problematicIcons)
+console.log('Processed icons', processedIcons)
// Select our new instances for easy export.
page.selection = newNodes
@@ -401,8 +411,6 @@ textNode.resize(1000, 1000)
figma.loadFontAsync({ family: "Roboto", style: "Regular" }).then(() => {
textNode.characters = JSON.stringify(iconData)
-})
-// Make sure to close the plugin when you're done. Otherwise the plugin will
-// keep running, which shows the cancel button at the bottom of the screen.
-figma.closePlugin()
+ figma.closePlugin()
+})
diff --git a/optimized/filled/address-book.svg b/optimized/filled/address-book.svg
new file mode 100644
index 0000000..ef64831
--- /dev/null
+++ b/optimized/filled/address-book.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/filled/bell.svg b/optimized/filled/bell.svg
new file mode 100644
index 0000000..cfa9e5e
--- /dev/null
+++ b/optimized/filled/bell.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/filled/brush.svg b/optimized/filled/brush.svg
new file mode 100644
index 0000000..26f33c8
--- /dev/null
+++ b/optimized/filled/brush.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/filled/calendar.svg b/optimized/filled/calendar.svg
new file mode 100644
index 0000000..d66e12e
--- /dev/null
+++ b/optimized/filled/calendar.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/filled/channel.svg b/optimized/filled/channel.svg
new file mode 100644
index 0000000..0c2d751
--- /dev/null
+++ b/optimized/filled/channel.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/filled/channels.svg b/optimized/filled/channels.svg
new file mode 100644
index 0000000..2f24a35
--- /dev/null
+++ b/optimized/filled/channels.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/filled/code.svg b/optimized/filled/code.svg
new file mode 100644
index 0000000..7211a0b
--- /dev/null
+++ b/optimized/filled/code.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/filled/coins.svg b/optimized/filled/coins.svg
new file mode 100644
index 0000000..99bf922
--- /dev/null
+++ b/optimized/filled/coins.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/filled/confirmations-0.svg b/optimized/filled/confirmations-0.svg
new file mode 100644
index 0000000..0b97ffb
--- /dev/null
+++ b/optimized/filled/confirmations-0.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/filled/confirmations-1.svg b/optimized/filled/confirmations-1.svg
new file mode 100644
index 0000000..17cc5cb
--- /dev/null
+++ b/optimized/filled/confirmations-1.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/filled/confirmations-2.svg b/optimized/filled/confirmations-2.svg
new file mode 100644
index 0000000..f503b35
--- /dev/null
+++ b/optimized/filled/confirmations-2.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/filled/confirmations-3.svg b/optimized/filled/confirmations-3.svg
new file mode 100644
index 0000000..9c7fb3f
--- /dev/null
+++ b/optimized/filled/confirmations-3.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/filled/confirmations-4.svg b/optimized/filled/confirmations-4.svg
new file mode 100644
index 0000000..62fc74d
--- /dev/null
+++ b/optimized/filled/confirmations-4.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/filled/confirmations-5.svg b/optimized/filled/confirmations-5.svg
new file mode 100644
index 0000000..9a3bc87
--- /dev/null
+++ b/optimized/filled/confirmations-5.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/filled/confirmations-6.svg b/optimized/filled/confirmations-6.svg
new file mode 100644
index 0000000..4754c80
--- /dev/null
+++ b/optimized/filled/confirmations-6.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/filled/credit-card.svg b/optimized/filled/credit-card.svg
new file mode 100644
index 0000000..c68dc6b
--- /dev/null
+++ b/optimized/filled/credit-card.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/filled/globe.svg b/optimized/filled/globe.svg
new file mode 100644
index 0000000..2ce9480
--- /dev/null
+++ b/optimized/filled/globe.svg
@@ -0,0 +1,5 @@
+
diff --git a/optimized/filled/graph.svg b/optimized/filled/graph.svg
new file mode 100644
index 0000000..22275ee
--- /dev/null
+++ b/optimized/filled/graph.svg
@@ -0,0 +1,6 @@
+
diff --git a/optimized/filled/invoice.svg b/optimized/filled/invoice.svg
new file mode 100644
index 0000000..776399d
--- /dev/null
+++ b/optimized/filled/invoice.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/filled/moon.svg b/optimized/filled/moon.svg
new file mode 100644
index 0000000..e576076
--- /dev/null
+++ b/optimized/filled/moon.svg
@@ -0,0 +1,6 @@
+
diff --git a/optimized/filled/pantheon.svg b/optimized/filled/pantheon.svg
new file mode 100644
index 0000000..d4e4ce0
--- /dev/null
+++ b/optimized/filled/pantheon.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/filled/photo.svg b/optimized/filled/photo.svg
new file mode 100644
index 0000000..eebbd22
--- /dev/null
+++ b/optimized/filled/photo.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/filled/pie-chart.svg b/optimized/filled/pie-chart.svg
new file mode 100644
index 0000000..1f94deb
--- /dev/null
+++ b/optimized/filled/pie-chart.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/filled/point-of-sale.svg b/optimized/filled/point-of-sale.svg
new file mode 100644
index 0000000..da95f43
--- /dev/null
+++ b/optimized/filled/point-of-sale.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/filled/refresh.svg b/optimized/filled/refresh.svg
new file mode 100644
index 0000000..7f64c8a
--- /dev/null
+++ b/optimized/filled/refresh.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/filled/relay.svg b/optimized/filled/relay.svg
new file mode 100644
index 0000000..c719200
--- /dev/null
+++ b/optimized/filled/relay.svg
@@ -0,0 +1,5 @@
+
diff --git a/optimized/filled/rocket.svg b/optimized/filled/rocket.svg
new file mode 100644
index 0000000..540cd5a
--- /dev/null
+++ b/optimized/filled/rocket.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/filled/shield.svg b/optimized/filled/shield.svg
new file mode 100644
index 0000000..7e7a3c3
--- /dev/null
+++ b/optimized/filled/shield.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/filled/sun.svg b/optimized/filled/sun.svg
new file mode 100644
index 0000000..c3789cd
--- /dev/null
+++ b/optimized/filled/sun.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/filled/tag.svg b/optimized/filled/tag.svg
new file mode 100644
index 0000000..bd6da9a
--- /dev/null
+++ b/optimized/filled/tag.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/filled/transactions.svg b/optimized/filled/transactions.svg
new file mode 100644
index 0000000..2bd9732
--- /dev/null
+++ b/optimized/filled/transactions.svg
@@ -0,0 +1,8 @@
+
diff --git a/optimized/outline/address-book.svg b/optimized/outline/address-book.svg
new file mode 100644
index 0000000..21aea5b
--- /dev/null
+++ b/optimized/outline/address-book.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/outline/bell.svg b/optimized/outline/bell.svg
new file mode 100644
index 0000000..234ea08
--- /dev/null
+++ b/optimized/outline/bell.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/outline/brush.svg b/optimized/outline/brush.svg
new file mode 100644
index 0000000..0ca9954
--- /dev/null
+++ b/optimized/outline/brush.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/outline/calendar.svg b/optimized/outline/calendar.svg
new file mode 100644
index 0000000..3f92fb3
--- /dev/null
+++ b/optimized/outline/calendar.svg
@@ -0,0 +1,6 @@
+
diff --git a/optimized/outline/channel.svg b/optimized/outline/channel.svg
new file mode 100644
index 0000000..191f3cf
--- /dev/null
+++ b/optimized/outline/channel.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/outline/channels.svg b/optimized/outline/channels.svg
new file mode 100644
index 0000000..de72ffb
--- /dev/null
+++ b/optimized/outline/channels.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/outline/code.svg b/optimized/outline/code.svg
new file mode 100644
index 0000000..80355cf
--- /dev/null
+++ b/optimized/outline/code.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/outline/coins.svg b/optimized/outline/coins.svg
new file mode 100644
index 0000000..c12705c
--- /dev/null
+++ b/optimized/outline/coins.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/outline/confirmations-0.svg b/optimized/outline/confirmations-0.svg
new file mode 100644
index 0000000..75d8c1c
--- /dev/null
+++ b/optimized/outline/confirmations-0.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/outline/confirmations-1.svg b/optimized/outline/confirmations-1.svg
new file mode 100644
index 0000000..15dcadb
--- /dev/null
+++ b/optimized/outline/confirmations-1.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/outline/confirmations-2.svg b/optimized/outline/confirmations-2.svg
new file mode 100644
index 0000000..9b2f8fa
--- /dev/null
+++ b/optimized/outline/confirmations-2.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/outline/confirmations-3.svg b/optimized/outline/confirmations-3.svg
new file mode 100644
index 0000000..91b395b
--- /dev/null
+++ b/optimized/outline/confirmations-3.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/outline/confirmations-4.svg b/optimized/outline/confirmations-4.svg
new file mode 100644
index 0000000..c42ad54
--- /dev/null
+++ b/optimized/outline/confirmations-4.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/outline/confirmations-5.svg b/optimized/outline/confirmations-5.svg
new file mode 100644
index 0000000..46196cc
--- /dev/null
+++ b/optimized/outline/confirmations-5.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/outline/confirmations-6.svg b/optimized/outline/confirmations-6.svg
new file mode 100644
index 0000000..cb00398
--- /dev/null
+++ b/optimized/outline/confirmations-6.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/outline/credit-card.svg b/optimized/outline/credit-card.svg
new file mode 100644
index 0000000..5d12b1f
--- /dev/null
+++ b/optimized/outline/credit-card.svg
@@ -0,0 +1,5 @@
+
diff --git a/optimized/outline/globe.svg b/optimized/outline/globe.svg
new file mode 100644
index 0000000..f3e485e
--- /dev/null
+++ b/optimized/outline/globe.svg
@@ -0,0 +1,5 @@
+
diff --git a/optimized/outline/graph.svg b/optimized/outline/graph.svg
new file mode 100644
index 0000000..2db2b09
--- /dev/null
+++ b/optimized/outline/graph.svg
@@ -0,0 +1,6 @@
+
diff --git a/optimized/outline/invoice.svg b/optimized/outline/invoice.svg
new file mode 100644
index 0000000..057e096
--- /dev/null
+++ b/optimized/outline/invoice.svg
@@ -0,0 +1,7 @@
+
diff --git a/optimized/outline/moon.svg b/optimized/outline/moon.svg
new file mode 100644
index 0000000..65c549b
--- /dev/null
+++ b/optimized/outline/moon.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/outline/pantheon.svg b/optimized/outline/pantheon.svg
new file mode 100644
index 0000000..2f17cd0
--- /dev/null
+++ b/optimized/outline/pantheon.svg
@@ -0,0 +1,7 @@
+
diff --git a/optimized/outline/photo.svg b/optimized/outline/photo.svg
new file mode 100644
index 0000000..fe9850e
--- /dev/null
+++ b/optimized/outline/photo.svg
@@ -0,0 +1,5 @@
+
diff --git a/optimized/outline/pie-chart.svg b/optimized/outline/pie-chart.svg
new file mode 100644
index 0000000..cab3693
--- /dev/null
+++ b/optimized/outline/pie-chart.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/outline/point-of-sale.svg b/optimized/outline/point-of-sale.svg
new file mode 100644
index 0000000..bf4ebf1
--- /dev/null
+++ b/optimized/outline/point-of-sale.svg
@@ -0,0 +1,5 @@
+
diff --git a/optimized/outline/refresh.svg b/optimized/outline/refresh.svg
new file mode 100644
index 0000000..47ca810
--- /dev/null
+++ b/optimized/outline/refresh.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/outline/relay.svg b/optimized/outline/relay.svg
new file mode 100644
index 0000000..868ab1f
--- /dev/null
+++ b/optimized/outline/relay.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/outline/rocket.svg b/optimized/outline/rocket.svg
new file mode 100644
index 0000000..e664375
--- /dev/null
+++ b/optimized/outline/rocket.svg
@@ -0,0 +1,7 @@
+
diff --git a/optimized/outline/shield.svg b/optimized/outline/shield.svg
new file mode 100644
index 0000000..3e151e4
--- /dev/null
+++ b/optimized/outline/shield.svg
@@ -0,0 +1,3 @@
+
diff --git a/optimized/outline/sun.svg b/optimized/outline/sun.svg
new file mode 100644
index 0000000..598136b
--- /dev/null
+++ b/optimized/outline/sun.svg
@@ -0,0 +1,4 @@
+
diff --git a/optimized/outline/tag.svg b/optimized/outline/tag.svg
new file mode 100644
index 0000000..ecb622d
--- /dev/null
+++ b/optimized/outline/tag.svg
@@ -0,0 +1,5 @@
+
diff --git a/optimized/outline/transactions.svg b/optimized/outline/transactions.svg
new file mode 100644
index 0000000..d1fabb3
--- /dev/null
+++ b/optimized/outline/transactions.svg
@@ -0,0 +1,8 @@
+
diff --git a/package.json b/package.json
index ee1e614..6357390 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@bitcoin-design/bitcoin-icons",
- "version": "0.1.7",
+ "version": "0.1.8",
"description": "About",
"main": "index.js",
"scripts": {
diff --git a/png/filled/address-book.png b/png/filled/address-book.png
new file mode 100644
index 0000000..560bbdd
Binary files /dev/null and b/png/filled/address-book.png differ
diff --git a/png/filled/bell.png b/png/filled/bell.png
new file mode 100644
index 0000000..556ac10
Binary files /dev/null and b/png/filled/bell.png differ
diff --git a/png/filled/brush.png b/png/filled/brush.png
new file mode 100644
index 0000000..4815b81
Binary files /dev/null and b/png/filled/brush.png differ
diff --git a/png/filled/calendar.png b/png/filled/calendar.png
new file mode 100644
index 0000000..99397ce
Binary files /dev/null and b/png/filled/calendar.png differ
diff --git a/png/filled/channel.png b/png/filled/channel.png
new file mode 100644
index 0000000..5c645f9
Binary files /dev/null and b/png/filled/channel.png differ
diff --git a/png/filled/channels.png b/png/filled/channels.png
new file mode 100644
index 0000000..4cd04f4
Binary files /dev/null and b/png/filled/channels.png differ
diff --git a/png/filled/code.png b/png/filled/code.png
new file mode 100644
index 0000000..18ffa5d
Binary files /dev/null and b/png/filled/code.png differ
diff --git a/png/filled/coins.png b/png/filled/coins.png
new file mode 100644
index 0000000..a5e6776
Binary files /dev/null and b/png/filled/coins.png differ
diff --git a/png/filled/confirmations-0.png b/png/filled/confirmations-0.png
new file mode 100644
index 0000000..39f161d
Binary files /dev/null and b/png/filled/confirmations-0.png differ
diff --git a/png/filled/confirmations-1.png b/png/filled/confirmations-1.png
new file mode 100644
index 0000000..fa09e37
Binary files /dev/null and b/png/filled/confirmations-1.png differ
diff --git a/png/filled/confirmations-2.png b/png/filled/confirmations-2.png
new file mode 100644
index 0000000..4f56ea8
Binary files /dev/null and b/png/filled/confirmations-2.png differ
diff --git a/png/filled/confirmations-3.png b/png/filled/confirmations-3.png
new file mode 100644
index 0000000..17fc22a
Binary files /dev/null and b/png/filled/confirmations-3.png differ
diff --git a/png/filled/confirmations-4.png b/png/filled/confirmations-4.png
new file mode 100644
index 0000000..63e40fb
Binary files /dev/null and b/png/filled/confirmations-4.png differ
diff --git a/png/filled/confirmations-5.png b/png/filled/confirmations-5.png
new file mode 100644
index 0000000..0eaba6c
Binary files /dev/null and b/png/filled/confirmations-5.png differ
diff --git a/png/filled/confirmations-6.png b/png/filled/confirmations-6.png
new file mode 100644
index 0000000..424480a
Binary files /dev/null and b/png/filled/confirmations-6.png differ
diff --git a/png/filled/credit-card.png b/png/filled/credit-card.png
new file mode 100644
index 0000000..2b52f33
Binary files /dev/null and b/png/filled/credit-card.png differ
diff --git a/png/filled/globe.png b/png/filled/globe.png
new file mode 100644
index 0000000..4bfdf1b
Binary files /dev/null and b/png/filled/globe.png differ
diff --git a/png/filled/graph.png b/png/filled/graph.png
new file mode 100644
index 0000000..25a479a
Binary files /dev/null and b/png/filled/graph.png differ
diff --git a/png/filled/invoice.png b/png/filled/invoice.png
new file mode 100644
index 0000000..c263845
Binary files /dev/null and b/png/filled/invoice.png differ
diff --git a/png/filled/moon.png b/png/filled/moon.png
new file mode 100644
index 0000000..e1add34
Binary files /dev/null and b/png/filled/moon.png differ
diff --git a/png/filled/pantheon.png b/png/filled/pantheon.png
new file mode 100644
index 0000000..9afd015
Binary files /dev/null and b/png/filled/pantheon.png differ
diff --git a/png/filled/photo.png b/png/filled/photo.png
new file mode 100644
index 0000000..db86800
Binary files /dev/null and b/png/filled/photo.png differ
diff --git a/png/filled/pie-chart.png b/png/filled/pie-chart.png
new file mode 100644
index 0000000..1c23e8b
Binary files /dev/null and b/png/filled/pie-chart.png differ
diff --git a/png/filled/point-of-sale.png b/png/filled/point-of-sale.png
new file mode 100644
index 0000000..a60f467
Binary files /dev/null and b/png/filled/point-of-sale.png differ
diff --git a/png/filled/refresh.png b/png/filled/refresh.png
new file mode 100644
index 0000000..9362b0f
Binary files /dev/null and b/png/filled/refresh.png differ
diff --git a/png/filled/relay.png b/png/filled/relay.png
new file mode 100644
index 0000000..877b42b
Binary files /dev/null and b/png/filled/relay.png differ
diff --git a/png/filled/rocket.png b/png/filled/rocket.png
new file mode 100644
index 0000000..ad071a4
Binary files /dev/null and b/png/filled/rocket.png differ
diff --git a/png/filled/shield.png b/png/filled/shield.png
new file mode 100644
index 0000000..045d998
Binary files /dev/null and b/png/filled/shield.png differ
diff --git a/png/filled/sun.png b/png/filled/sun.png
new file mode 100644
index 0000000..3cb0897
Binary files /dev/null and b/png/filled/sun.png differ
diff --git a/png/filled/tag.png b/png/filled/tag.png
new file mode 100644
index 0000000..b47f1e0
Binary files /dev/null and b/png/filled/tag.png differ
diff --git a/png/filled/transactions.png b/png/filled/transactions.png
new file mode 100644
index 0000000..bdf642f
Binary files /dev/null and b/png/filled/transactions.png differ
diff --git a/png/outline/address-book.png b/png/outline/address-book.png
new file mode 100644
index 0000000..9e1a13d
Binary files /dev/null and b/png/outline/address-book.png differ
diff --git a/png/outline/bell.png b/png/outline/bell.png
new file mode 100644
index 0000000..511e525
Binary files /dev/null and b/png/outline/bell.png differ
diff --git a/png/outline/brush.png b/png/outline/brush.png
new file mode 100644
index 0000000..b3ce4af
Binary files /dev/null and b/png/outline/brush.png differ
diff --git a/png/outline/calendar.png b/png/outline/calendar.png
new file mode 100644
index 0000000..125fb71
Binary files /dev/null and b/png/outline/calendar.png differ
diff --git a/png/outline/channel.png b/png/outline/channel.png
new file mode 100644
index 0000000..eaaabeb
Binary files /dev/null and b/png/outline/channel.png differ
diff --git a/png/outline/channels.png b/png/outline/channels.png
new file mode 100644
index 0000000..5cf3507
Binary files /dev/null and b/png/outline/channels.png differ
diff --git a/png/outline/code.png b/png/outline/code.png
new file mode 100644
index 0000000..e983508
Binary files /dev/null and b/png/outline/code.png differ
diff --git a/png/outline/coins.png b/png/outline/coins.png
new file mode 100644
index 0000000..3c91358
Binary files /dev/null and b/png/outline/coins.png differ
diff --git a/png/outline/confirmations-0.png b/png/outline/confirmations-0.png
new file mode 100644
index 0000000..48291d3
Binary files /dev/null and b/png/outline/confirmations-0.png differ
diff --git a/png/outline/confirmations-1.png b/png/outline/confirmations-1.png
new file mode 100644
index 0000000..6c34e4a
Binary files /dev/null and b/png/outline/confirmations-1.png differ
diff --git a/png/outline/confirmations-2.png b/png/outline/confirmations-2.png
new file mode 100644
index 0000000..ee64ba2
Binary files /dev/null and b/png/outline/confirmations-2.png differ
diff --git a/png/outline/confirmations-3.png b/png/outline/confirmations-3.png
new file mode 100644
index 0000000..239935e
Binary files /dev/null and b/png/outline/confirmations-3.png differ
diff --git a/png/outline/confirmations-4.png b/png/outline/confirmations-4.png
new file mode 100644
index 0000000..6795356
Binary files /dev/null and b/png/outline/confirmations-4.png differ
diff --git a/png/outline/confirmations-5.png b/png/outline/confirmations-5.png
new file mode 100644
index 0000000..cf51496
Binary files /dev/null and b/png/outline/confirmations-5.png differ
diff --git a/png/outline/confirmations-6.png b/png/outline/confirmations-6.png
new file mode 100644
index 0000000..4adb8f0
Binary files /dev/null and b/png/outline/confirmations-6.png differ
diff --git a/png/outline/credit-card.png b/png/outline/credit-card.png
new file mode 100644
index 0000000..e3cdb10
Binary files /dev/null and b/png/outline/credit-card.png differ
diff --git a/png/outline/globe.png b/png/outline/globe.png
new file mode 100644
index 0000000..bd033ec
Binary files /dev/null and b/png/outline/globe.png differ
diff --git a/png/outline/graph.png b/png/outline/graph.png
new file mode 100644
index 0000000..4d22b79
Binary files /dev/null and b/png/outline/graph.png differ
diff --git a/png/outline/invoice.png b/png/outline/invoice.png
new file mode 100644
index 0000000..aa84673
Binary files /dev/null and b/png/outline/invoice.png differ
diff --git a/png/outline/moon.png b/png/outline/moon.png
new file mode 100644
index 0000000..bdfd49e
Binary files /dev/null and b/png/outline/moon.png differ
diff --git a/png/outline/pantheon.png b/png/outline/pantheon.png
new file mode 100644
index 0000000..a795c25
Binary files /dev/null and b/png/outline/pantheon.png differ
diff --git a/png/outline/photo.png b/png/outline/photo.png
new file mode 100644
index 0000000..20af705
Binary files /dev/null and b/png/outline/photo.png differ
diff --git a/png/outline/pie-chart.png b/png/outline/pie-chart.png
new file mode 100644
index 0000000..40ce104
Binary files /dev/null and b/png/outline/pie-chart.png differ
diff --git a/png/outline/point-of-sale.png b/png/outline/point-of-sale.png
new file mode 100644
index 0000000..ba32070
Binary files /dev/null and b/png/outline/point-of-sale.png differ
diff --git a/png/outline/refresh.png b/png/outline/refresh.png
new file mode 100644
index 0000000..8e69952
Binary files /dev/null and b/png/outline/refresh.png differ
diff --git a/png/outline/relay.png b/png/outline/relay.png
new file mode 100644
index 0000000..86661bd
Binary files /dev/null and b/png/outline/relay.png differ
diff --git a/png/outline/rocket.png b/png/outline/rocket.png
new file mode 100644
index 0000000..8400df2
Binary files /dev/null and b/png/outline/rocket.png differ
diff --git a/png/outline/shield.png b/png/outline/shield.png
new file mode 100644
index 0000000..6398f82
Binary files /dev/null and b/png/outline/shield.png differ
diff --git a/png/outline/sun.png b/png/outline/sun.png
new file mode 100644
index 0000000..fa94937
Binary files /dev/null and b/png/outline/sun.png differ
diff --git a/png/outline/tag.png b/png/outline/tag.png
new file mode 100644
index 0000000..2bd5446
Binary files /dev/null and b/png/outline/tag.png differ
diff --git a/png/outline/transactions.png b/png/outline/transactions.png
new file mode 100644
index 0000000..d06f621
Binary files /dev/null and b/png/outline/transactions.png differ
diff --git a/react/package.json b/react/package.json
index 5099cbf..f375e3c 100644
--- a/react/package.json
+++ b/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@bitcoin-design/bitcoin-icons-react",
- "version": "0.1.7",
+ "version": "0.1.8",
"description": "",
"repository": {
"type": "git",
diff --git a/svg/filled/address-book.svg b/svg/filled/address-book.svg
new file mode 100644
index 0000000..c128ad8
--- /dev/null
+++ b/svg/filled/address-book.svg
@@ -0,0 +1,4 @@
+
diff --git a/svg/filled/bell.svg b/svg/filled/bell.svg
new file mode 100644
index 0000000..86ac93b
--- /dev/null
+++ b/svg/filled/bell.svg
@@ -0,0 +1,4 @@
+
diff --git a/svg/filled/brush.svg b/svg/filled/brush.svg
new file mode 100644
index 0000000..839e647
--- /dev/null
+++ b/svg/filled/brush.svg
@@ -0,0 +1,4 @@
+
diff --git a/svg/filled/calendar.svg b/svg/filled/calendar.svg
new file mode 100644
index 0000000..696a4ff
--- /dev/null
+++ b/svg/filled/calendar.svg
@@ -0,0 +1,6 @@
+
diff --git a/svg/filled/channel.svg b/svg/filled/channel.svg
new file mode 100644
index 0000000..7f29c2e
--- /dev/null
+++ b/svg/filled/channel.svg
@@ -0,0 +1,5 @@
+
diff --git a/svg/filled/channels.svg b/svg/filled/channels.svg
new file mode 100644
index 0000000..0e95046
--- /dev/null
+++ b/svg/filled/channels.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/filled/code.svg b/svg/filled/code.svg
new file mode 100644
index 0000000..3ab0447
--- /dev/null
+++ b/svg/filled/code.svg
@@ -0,0 +1,5 @@
+
diff --git a/svg/filled/coins.svg b/svg/filled/coins.svg
new file mode 100644
index 0000000..1f818ad
--- /dev/null
+++ b/svg/filled/coins.svg
@@ -0,0 +1,4 @@
+
diff --git a/svg/filled/confirmations-0.svg b/svg/filled/confirmations-0.svg
new file mode 100644
index 0000000..18e5285
--- /dev/null
+++ b/svg/filled/confirmations-0.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/filled/confirmations-1.svg b/svg/filled/confirmations-1.svg
new file mode 100644
index 0000000..6de636a
--- /dev/null
+++ b/svg/filled/confirmations-1.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/filled/confirmations-2.svg b/svg/filled/confirmations-2.svg
new file mode 100644
index 0000000..1978cf5
--- /dev/null
+++ b/svg/filled/confirmations-2.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/filled/confirmations-3.svg b/svg/filled/confirmations-3.svg
new file mode 100644
index 0000000..4324a8b
--- /dev/null
+++ b/svg/filled/confirmations-3.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/filled/confirmations-4.svg b/svg/filled/confirmations-4.svg
new file mode 100644
index 0000000..06838b1
--- /dev/null
+++ b/svg/filled/confirmations-4.svg
@@ -0,0 +1,10 @@
+
diff --git a/svg/filled/confirmations-5.svg b/svg/filled/confirmations-5.svg
new file mode 100644
index 0000000..3648d46
--- /dev/null
+++ b/svg/filled/confirmations-5.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/filled/confirmations-6.svg b/svg/filled/confirmations-6.svg
new file mode 100644
index 0000000..be50d61
--- /dev/null
+++ b/svg/filled/confirmations-6.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/filled/credit-card.svg b/svg/filled/credit-card.svg
new file mode 100644
index 0000000..f93fbb0
--- /dev/null
+++ b/svg/filled/credit-card.svg
@@ -0,0 +1,4 @@
+
diff --git a/svg/filled/globe.svg b/svg/filled/globe.svg
new file mode 100644
index 0000000..e1b694b
--- /dev/null
+++ b/svg/filled/globe.svg
@@ -0,0 +1,5 @@
+
diff --git a/svg/filled/graph.svg b/svg/filled/graph.svg
new file mode 100644
index 0000000..20e29ca
--- /dev/null
+++ b/svg/filled/graph.svg
@@ -0,0 +1,6 @@
+
diff --git a/svg/filled/invoice.svg b/svg/filled/invoice.svg
new file mode 100644
index 0000000..0c4f2dc
--- /dev/null
+++ b/svg/filled/invoice.svg
@@ -0,0 +1,3 @@
+
diff --git a/svg/filled/moon.svg b/svg/filled/moon.svg
new file mode 100644
index 0000000..8638166
--- /dev/null
+++ b/svg/filled/moon.svg
@@ -0,0 +1,7 @@
+
diff --git a/svg/filled/pantheon.svg b/svg/filled/pantheon.svg
new file mode 100644
index 0000000..1c56e12
--- /dev/null
+++ b/svg/filled/pantheon.svg
@@ -0,0 +1,7 @@
+
diff --git a/svg/filled/photo.svg b/svg/filled/photo.svg
new file mode 100644
index 0000000..4d0109f
--- /dev/null
+++ b/svg/filled/photo.svg
@@ -0,0 +1,3 @@
+
diff --git a/svg/filled/pie-chart.svg b/svg/filled/pie-chart.svg
new file mode 100644
index 0000000..69e9dc2
--- /dev/null
+++ b/svg/filled/pie-chart.svg
@@ -0,0 +1,4 @@
+
diff --git a/svg/filled/point-of-sale.svg b/svg/filled/point-of-sale.svg
new file mode 100644
index 0000000..e17cfb4
--- /dev/null
+++ b/svg/filled/point-of-sale.svg
@@ -0,0 +1,3 @@
+
diff --git a/svg/filled/refresh.svg b/svg/filled/refresh.svg
new file mode 100644
index 0000000..c4336c4
--- /dev/null
+++ b/svg/filled/refresh.svg
@@ -0,0 +1,6 @@
+
diff --git a/svg/filled/relay.svg b/svg/filled/relay.svg
new file mode 100644
index 0000000..9ee2858
--- /dev/null
+++ b/svg/filled/relay.svg
@@ -0,0 +1,6 @@
+
diff --git a/svg/filled/rocket.svg b/svg/filled/rocket.svg
new file mode 100644
index 0000000..803db0c
--- /dev/null
+++ b/svg/filled/rocket.svg
@@ -0,0 +1,9 @@
+
diff --git a/svg/filled/shield.svg b/svg/filled/shield.svg
new file mode 100644
index 0000000..bf4bcba
--- /dev/null
+++ b/svg/filled/shield.svg
@@ -0,0 +1,3 @@
+
diff --git a/svg/filled/sun.svg b/svg/filled/sun.svg
new file mode 100644
index 0000000..f094dee
--- /dev/null
+++ b/svg/filled/sun.svg
@@ -0,0 +1,11 @@
+
diff --git a/svg/filled/tag.svg b/svg/filled/tag.svg
new file mode 100644
index 0000000..df56e19
--- /dev/null
+++ b/svg/filled/tag.svg
@@ -0,0 +1,3 @@
+
diff --git a/svg/filled/transactions.svg b/svg/filled/transactions.svg
new file mode 100644
index 0000000..cb1543b
--- /dev/null
+++ b/svg/filled/transactions.svg
@@ -0,0 +1,11 @@
+
diff --git a/svg/outline/address-book.svg b/svg/outline/address-book.svg
new file mode 100644
index 0000000..7a09687
--- /dev/null
+++ b/svg/outline/address-book.svg
@@ -0,0 +1,4 @@
+
diff --git a/svg/outline/bell.svg b/svg/outline/bell.svg
new file mode 100644
index 0000000..e58f770
--- /dev/null
+++ b/svg/outline/bell.svg
@@ -0,0 +1,4 @@
+
diff --git a/svg/outline/brush.svg b/svg/outline/brush.svg
new file mode 100644
index 0000000..9a70048
--- /dev/null
+++ b/svg/outline/brush.svg
@@ -0,0 +1,7 @@
+
diff --git a/svg/outline/calendar.svg b/svg/outline/calendar.svg
new file mode 100644
index 0000000..e74b173
--- /dev/null
+++ b/svg/outline/calendar.svg
@@ -0,0 +1,16 @@
+
diff --git a/svg/outline/channel.svg b/svg/outline/channel.svg
new file mode 100644
index 0000000..5593bc5
--- /dev/null
+++ b/svg/outline/channel.svg
@@ -0,0 +1,5 @@
+
diff --git a/svg/outline/channels.svg b/svg/outline/channels.svg
new file mode 100644
index 0000000..27919c2
--- /dev/null
+++ b/svg/outline/channels.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/outline/code.svg b/svg/outline/code.svg
new file mode 100644
index 0000000..55f4eef
--- /dev/null
+++ b/svg/outline/code.svg
@@ -0,0 +1,5 @@
+
diff --git a/svg/outline/coins.svg b/svg/outline/coins.svg
new file mode 100644
index 0000000..dcbc708
--- /dev/null
+++ b/svg/outline/coins.svg
@@ -0,0 +1,4 @@
+
diff --git a/svg/outline/confirmations-0.svg b/svg/outline/confirmations-0.svg
new file mode 100644
index 0000000..0326faa
--- /dev/null
+++ b/svg/outline/confirmations-0.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/outline/confirmations-1.svg b/svg/outline/confirmations-1.svg
new file mode 100644
index 0000000..964556e
--- /dev/null
+++ b/svg/outline/confirmations-1.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/outline/confirmations-2.svg b/svg/outline/confirmations-2.svg
new file mode 100644
index 0000000..a9eb177
--- /dev/null
+++ b/svg/outline/confirmations-2.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/outline/confirmations-3.svg b/svg/outline/confirmations-3.svg
new file mode 100644
index 0000000..68ea7f7
--- /dev/null
+++ b/svg/outline/confirmations-3.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/outline/confirmations-4.svg b/svg/outline/confirmations-4.svg
new file mode 100644
index 0000000..2c78b52
--- /dev/null
+++ b/svg/outline/confirmations-4.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/outline/confirmations-5.svg b/svg/outline/confirmations-5.svg
new file mode 100644
index 0000000..0ea51cc
--- /dev/null
+++ b/svg/outline/confirmations-5.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/outline/confirmations-6.svg b/svg/outline/confirmations-6.svg
new file mode 100644
index 0000000..bf9a66a
--- /dev/null
+++ b/svg/outline/confirmations-6.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/outline/credit-card.svg b/svg/outline/credit-card.svg
new file mode 100644
index 0000000..7b16ec9
--- /dev/null
+++ b/svg/outline/credit-card.svg
@@ -0,0 +1,6 @@
+
diff --git a/svg/outline/globe.svg b/svg/outline/globe.svg
new file mode 100644
index 0000000..c022c32
--- /dev/null
+++ b/svg/outline/globe.svg
@@ -0,0 +1,5 @@
+
diff --git a/svg/outline/graph.svg b/svg/outline/graph.svg
new file mode 100644
index 0000000..04004a2
--- /dev/null
+++ b/svg/outline/graph.svg
@@ -0,0 +1,10 @@
+
diff --git a/svg/outline/invoice.svg b/svg/outline/invoice.svg
new file mode 100644
index 0000000..178a52d
--- /dev/null
+++ b/svg/outline/invoice.svg
@@ -0,0 +1,8 @@
+
diff --git a/svg/outline/moon.svg b/svg/outline/moon.svg
new file mode 100644
index 0000000..a124f30
--- /dev/null
+++ b/svg/outline/moon.svg
@@ -0,0 +1,7 @@
+
diff --git a/svg/outline/pantheon.svg b/svg/outline/pantheon.svg
new file mode 100644
index 0000000..e7aa1af
--- /dev/null
+++ b/svg/outline/pantheon.svg
@@ -0,0 +1,7 @@
+
diff --git a/svg/outline/photo.svg b/svg/outline/photo.svg
new file mode 100644
index 0000000..67ccb2d
--- /dev/null
+++ b/svg/outline/photo.svg
@@ -0,0 +1,5 @@
+
diff --git a/svg/outline/pie-chart.svg b/svg/outline/pie-chart.svg
new file mode 100644
index 0000000..99256a2
--- /dev/null
+++ b/svg/outline/pie-chart.svg
@@ -0,0 +1,4 @@
+
diff --git a/svg/outline/point-of-sale.svg b/svg/outline/point-of-sale.svg
new file mode 100644
index 0000000..df50903
--- /dev/null
+++ b/svg/outline/point-of-sale.svg
@@ -0,0 +1,13 @@
+
diff --git a/svg/outline/refresh.svg b/svg/outline/refresh.svg
new file mode 100644
index 0000000..179e1b6
--- /dev/null
+++ b/svg/outline/refresh.svg
@@ -0,0 +1,6 @@
+
diff --git a/svg/outline/relay.svg b/svg/outline/relay.svg
new file mode 100644
index 0000000..de0a932
--- /dev/null
+++ b/svg/outline/relay.svg
@@ -0,0 +1,6 @@
+
diff --git a/svg/outline/rocket.svg b/svg/outline/rocket.svg
new file mode 100644
index 0000000..1517b82
--- /dev/null
+++ b/svg/outline/rocket.svg
@@ -0,0 +1,9 @@
+
diff --git a/svg/outline/shield.svg b/svg/outline/shield.svg
new file mode 100644
index 0000000..864f7f4
--- /dev/null
+++ b/svg/outline/shield.svg
@@ -0,0 +1,3 @@
+
diff --git a/svg/outline/sun.svg b/svg/outline/sun.svg
new file mode 100644
index 0000000..3505ffd
--- /dev/null
+++ b/svg/outline/sun.svg
@@ -0,0 +1,11 @@
+
diff --git a/svg/outline/tag.svg b/svg/outline/tag.svg
new file mode 100644
index 0000000..2a3e172
--- /dev/null
+++ b/svg/outline/tag.svg
@@ -0,0 +1,6 @@
+
diff --git a/svg/outline/transactions.svg b/svg/outline/transactions.svg
new file mode 100644
index 0000000..2b42f94
--- /dev/null
+++ b/svg/outline/transactions.svg
@@ -0,0 +1,11 @@
+
diff --git a/vue/package.json b/vue/package.json
index 0440c1a..b4eac7b 100644
--- a/vue/package.json
+++ b/vue/package.json
@@ -1,6 +1,6 @@
{
"name": "@bitcoin-design/bitcoin-icons-vue",
- "version": "0.1.7",
+ "version": "0.1.8",
"description": "",
"repository": {
"type": "git",