MCPcopy Create free account
hub / github.com/developersdigest/llm-answer-engine / IconClose

Function IconClose

components/ui/icons.tsx:186–198  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<'svg'>)

Source from the content-addressed store, hash-verified

184}
185
186function IconClose({ className, ...props }: React.ComponentProps<'svg'>) {
187 return (
188 <svg
189 xmlns="http://www.w3.org/2000/svg"
190 viewBox="0 0 256 256"
191 fill="currentColor"
192 className={cn('h-4 w-4', className)}
193 {...props}
194 >
195 <path d="M205.66 194.34a8 8 0 0 1-11.32 11.32L128 139.31l-66.34 66.35a8 8 0 0 1-11.32-11.32L116.69 128 50.34 61.66a8 8 0 0 1 11.32-11.32L128 116.69l66.34-66.35a8 8 0 0 1 11.32 11.32L139.31 128Z" />
196 </svg>
197 );
198}
199
200function IconShare({ className, ...props }: React.ComponentProps<'svg'>) {
201 return (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected