MCPcopy Create free account
hub / github.com/benjitaylor/agentation / IconClose

Function IconClose

package/src/components/icons.tsx:10–19  ·  view source on GitHub ↗
({ size = 16 }: { size?: number })

Source from the content-addressed store, hash-verified

8
9// Small X for marker delete
10export const IconClose = ({ size = 16 }: { size?: number }) => (
11 <svg width={size} height={size} viewBox="0 0 16 16" fill="none">
12 <path
13 d="M4 4l8 8M12 4l-8 8"
14 stroke="currentColor"
15 strokeWidth="1.5"
16 strokeLinecap="round"
17 />
18 </svg>
19);
20
21// Plus icon
22export const IconPlus = ({ size = 16 }: { size?: number }) => (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…