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

Function CrossIcon

apps/baseai.dev/src/components/icons/CrossIcon.tsx:1–19  ·  view source on GitHub ↗
(props: React.ComponentPropsWithoutRef<'svg'>)

Source from the content-addressed store, hash-verified

1export function CrossIcon(props: React.ComponentPropsWithoutRef<'svg'>) {
2 return (
3 <svg
4 xmlns="http://www.w3.org/2000/svg"
5 fill="none"
6 viewBox="0 0 24 24"
7 strokeWidth={2}
8 stroke="currentColor"
9 aria-hidden="true"
10 {...props}
11 >
12 <path
13 strokeLinecap="round"
14 strokeLinejoin="round"
15 d="M6 18 18 6M6 6l12 12"
16 />
17 </svg>
18 );
19}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected