MCPcopy Create free account
hub / github.com/SyntaxUI/syntaxui / InfoIcon

Function InfoIcon

src/components/mdx.tsx:33–47  ·  view source on GitHub ↗
(props: React.ComponentPropsWithoutRef<'svg'>)

Source from the content-addressed store, hash-verified

31}
32
33function InfoIcon(props: React.ComponentPropsWithoutRef<'svg'>) {
34 return (
35 <svg viewBox="0 0 16 16" aria-hidden="true" {...props}>
36 <circle cx="8" cy="8" r="8" strokeWidth="0" />
37 <path
38 fill="none"
39 strokeLinecap="round"
40 strokeLinejoin="round"
41 strokeWidth="1.5"
42 d="M6.75 7.75h1.5v3.5"
43 />
44 <circle cx="8" cy="4" r=".5" fill="none" />
45 </svg>
46 )
47}
48
49export function Note({ children }: { children: React.ReactNode }) {
50 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected