MCPcopy Create free account
hub / github.com/anomalyco/models.dev / LabLink

Function LabLink

packages/web/src/render.tsx:1286–1296  ·  view source on GitHub ↗
(props: { labId: string; labName: string })

Source from the content-addressed store, hash-verified

1284}
1285
1286function LabLink(props: { labId: string; labName: string }) {
1287 return (
1288 <a class="lab-link" href={labHref(props.labId)}>
1289 <span
1290 class="lab-logo"
1291 dangerouslySetInnerHTML={{ __html: labLogoSvg(props.labId) }}
1292 />
1293 <span>{props.labName}</span>
1294 </a>
1295 );
1296}
1297
1298function CopyButton(props: { value: string; label: string }) {
1299 return (

Callers

nothing calls this directly

Calls 2

labHrefFunction · 0.85
labLogoSvgFunction · 0.85

Tested by

no test coverage detected