Skip to content

Commit

Permalink
fix: add new programming language icons (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
blumamir authored May 13, 2024
1 parent a57ba1c commit 5b6d6ba
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 5 deletions.
7 changes: 6 additions & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion dist/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,13 @@ var LANGUAGES_LOGOS = {
python: `${BASE_URL}python.png`,
dotnet: `${BASE_URL}dotnet.png`,
default: `${BASE_URL}default.png`,
mysql: `${BASE_URL}mysql.png`
mysql: `${BASE_URL}mysql.png`,
unknown: `${BASE_URL}default.svg`,
// TODO: good icon
processing: `${BASE_URL}default.svg`,
// TODO: good icon
"no containers": `${BASE_URL}default.svg`
// TODO: good icon
};

// src/design.system/code.block/code.block.tsx
Expand Down
2 changes: 1 addition & 1 deletion dist/index.mjs.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@keyval-dev/design-system",
"version": "1.8.3",
"version": "1.8.4",
"private": false,
"scripts": {
"dev": "next dev",
Expand Down
3 changes: 3 additions & 0 deletions src/assets/icons/languages/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ export const LANGUAGES_LOGOS = {
dotnet: `${BASE_URL}dotnet.png`,
default: `${BASE_URL}default.png`,
mysql: `${BASE_URL}mysql.png`,
unknown: `${BASE_URL}default.svg`, // TODO: good icon
processing: `${BASE_URL}default.svg`, // TODO: good icon
'no containers': `${BASE_URL}default.svg`, // TODO: good icon
};

export const LANGUAGES_COLORS = {
Expand Down

0 comments on commit 5b6d6ba

Please sign in to comment.