Skip to content

Commit 95e4723

Browse files
authored
More Icons (#51)
* docs: readme * chore: datalayer logo * chore: draft * chore: signpost * chore: zed icon * chore: magnet icons * chore: makefile * chore: waving hand * chore: alien and lizard * chore: bluesky * icons: null * chore: pen * chore: sparkle * chore: tiktok * chore: more icons
1 parent 864d9db commit 95e4723

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1129
-17
lines changed

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ dev: ## start
3333
($(CONDA_ACTIVATE) ${ENV_NAME}; \
3434
yarn dev )
3535

36+
start: ## start
37+
($(CONDA_ACTIVATE) ${ENV_NAME}; \
38+
yarn start )
39+
3640
publish-npm: clean build ## publish to npm
3741
@exec echo PUBLISH NPM
3842
($(CONDA_ACTIVATE) ${ENV_NAME}; \

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ These are useful places for open-source SVGs.
133133
- Icons.js https://github.com/antfu/icones https://icones.js.org
134134
- Lucide https://github.com/lucide-icons/lucide https://lucide.dev
135135
- OpenMoji https://github.com/hfg-gmuend/openmoji https://openmoji.org
136+
- Primer Octicons https://github.com/primer/octicons https://primer.style/foundations/icons
136137
- Radix UI Icons https://github.com/radix-ui/icons https://icons.radix-ui.com
137138
- React Icons https://github.com/react-icons/react-icons https://react-icons.github.io/react-icons
138139
- SVG Repo https://www.svgrepo.com

icons-react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@datalayer/icons-react",
33
"license": "MIT",
4-
"version": "0.3.4",
4+
"version": "0.3.5",
55
"description": "React.js and JupyterLab icons for data products.",
66
"keywords": [
77
"icons",

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
"@babel/plugin-transform-react-jsx": "^7.12.12",
4141
"@primer/brand-primitives": "^0.29.1",
4242
"@primer/octicons-react": "^19.6.0",
43-
"@primer/react": "^36.25.0",
44-
"@primer/react-brand": "0.37.0-rc.ab1bfc11",
43+
"@primer/react": "^36.27.0",
44+
"@primer/react-brand": "^0.44.1",
4545
"@svgr/core": "^5.5.0",
4646
"@types/react": "18.2.12",
4747
"@types/react-dom": "18.2.5",

src/footer/MinimalFooter.tsx

+9-9
Original file line numberDiff line numberDiff line change
@@ -157,34 +157,34 @@ function SocialLogomarks({socialLinks, logoHref}: SocialLogomarksProps) {
157157

158158
const socialLinkData = [
159159
{
160-
name: 'x',
161-
fullName: 'X',
162-
url: 'https://x.com/datalayerio',
163-
icon: 'https://github.githubassets.com/images/modules/site/icons/footer/x.svg',
164-
iconWidth: 22,
165-
iconHeight: 18
160+
name: 'bluesky',
161+
fullName: 'Bluesky',
162+
url: 'https://bsky.app/profile/datalayer.io',
163+
icon: 'https://assets.datalayer.tech/logos-social-grey/bluesky.svg',
164+
iconWidth: 24,
165+
iconHeight: 24
166166
},
167167
{
168168
name: 'github',
169169
fullName: 'GitHub',
170170
url: 'https://github.com/datalayer',
171-
icon: 'https://github.githubassets.com/images/modules/site/icons/footer/github-mark.svg',
171+
icon: 'https://assets.datalayer.tech/logos-social-grey/github.svg',
172172
iconWidth: 20,
173173
iconHeight: 20
174174
},
175175
{
176176
name: 'linkedin',
177177
fullName: 'LinkedIn',
178178
url: 'https://www.linkedin.com/company/datalayer',
179-
icon: 'https://github.githubassets.com/images/modules/site/icons/footer/linkedin.svg',
179+
icon: 'https://assets.datalayer.tech/logos-social-grey/linkedin.svg',
180180
iconWidth: 19,
181181
iconHeight: 18
182182
},
183183
{
184184
name: 'youtube',
185185
fullName: 'YouTube',
186186
url: 'https://www.youtube.com/@datalayer',
187-
icon: 'https://github.githubassets.com/images/modules/site/icons/footer/youtube.svg',
187+
icon: 'https://assets.datalayer.tech/logos-social-grey/youtube.svg',
188188
iconWidth: 23,
189189
iconHeight: 16
190190
},

svg/data1/bluesky-grey.svg

+3
Loading

svg/data1/bluesky.svg

+4
Loading

svg/data1/datalayer-variant.svg

+5
Loading

svg/data1/datalayer.svg

100644100755
+159-5
Loading

svg/data1/draft.svg

+24
Loading

svg/data1/null-1.svg

+20
Loading

svg/data1/null-2.svg

+6
Loading

svg/data1/null-3.svg

+2
Loading

svg/data1/null-4.svg

+2
Loading

svg/data1/null-5.svg

+14
Loading

svg/data1/null-6.svg

+28
Loading

svg/data1/tiktok.svg

+2
Loading

0 commit comments

Comments
 (0)