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

Function AnchorIcon

src/components/Heading.tsx:11–23  ·  view source on GitHub ↗
(props: React.ComponentPropsWithoutRef<'svg'>)

Source from the content-addressed store, hash-verified

9import { remToPx } from '@/lib/remToPx'
10
11function AnchorIcon(props: React.ComponentPropsWithoutRef<'svg'>) {
12 return (
13 <svg
14 viewBox="0 0 20 20"
15 fill="none"
16 strokeLinecap="round"
17 aria-hidden="true"
18 {...props}
19 >
20 <path d="m6.5 11.5-.964-.964a3.535 3.535 0 1 1 5-5l.964.964m2 2 .964.964a3.536 3.536 0 0 1-5 5L8.5 13.5m0-5 3 3" />
21 </svg>
22 )
23}
24
25function Eyebrow({ tag, label }: { tag?: string; label?: string }) {
26 if (!tag && !label) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected