MCPcopy Create free account
hub / github.com/CommandCodeAI/BaseAI / InfoIcon

Function InfoIcon

apps/baseai.dev/src/components/icons/InfoIcon.tsx:2–16  ·  view source on GitHub ↗
(props: React.SVGProps<SVGSVGElement>)

Source from the content-addressed store, hash-verified

1import React from 'react';
2export function InfoIcon(props: React.SVGProps<SVGSVGElement>) {
3 return (
4 <svg viewBox="0 0 16 16" aria-hidden="true" {...props}>
5 <circle cx="8" cy="8" r="8" strokeWidth="0" />
6 <path
7 fill="none"
8 strokeLinecap="round"
9 strokeLinejoin="round"
10 strokeWidth="1.5"
11 d="M6.75 7.75h1.5v3.5"
12 />
13 <circle cx="8" cy="4" r=".5" fill="none" />
14 </svg>
15 );
16}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected