Skip to content

Commit 7cf8efc

Browse files
authored
Added go.dev package for FHIRPath Go (#539)
1 parent c1f5f8e commit 7cf8efc

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

src/data/projects.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import {
22
BarIcon,
33
GitHubIcon,
4+
GolangGopherIcon,
45
GooglePlayStoreIcon,
56
ImpactDepthIcon,
67
MPXIcon,
@@ -177,6 +178,12 @@ const projects: Projects[] = [
177178
type: 'Employment',
178179
url: 'https://github.com/verily-src/fhirpath-go',
179180
urls: [
181+
{
182+
text: 'go.dev Package',
183+
tooltip: 'Visit the FHIRPath Go package page on Go.dev',
184+
icon: GolangGopherIcon,
185+
url: 'https://pkg.go.dev/github.com/verily-src/fhirpath-go',
186+
},
180187
{
181188
text: 'GitHub',
182189
tooltip: 'Visit the open-source GitHub repository for FHIRPath Go',

src/images/icons.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
22
import BAR from './icons/bar.svg';
33
import BlueSky from './icons/bluesky.svg';
44
import GitHub from './icons/github.svg';
5+
import GolangGopher from './icons/golanggopher.svg';
56
import GooglePlayStore from './icons/googleplay.svg';
67
import ImpactDepth from './icons/impactdepth.svg';
78
import Instagram from './icons/instagram.svg';
@@ -36,6 +37,7 @@ function generateIconJSX(
3637
export const BarIcon = (props: SvgIconProps) => generateIconJSX(BAR, props);
3738
export const BlueSkyIcon = (props: SvgIconProps) => generateIconJSX(BlueSky, props);
3839
export const GitHubIcon = (props: SvgIconProps) => generateIconJSX(GitHub, props);
40+
export const GolangGopherIcon = (props: SvgIconProps) => generateIconJSX(GolangGopher, props);
3941
export const GooglePlayStoreIcon = (props: SvgIconProps) => generateIconJSX(GooglePlayStore, props);
4042
export const ImpactDepthIcon = (props: SvgIconProps) => generateIconJSX(ImpactDepth, props);
4143
export const InstagramIcon = (props: SvgIconProps) => generateIconJSX(Instagram, props);

src/images/icons/golanggopher.svg

Lines changed: 24 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)