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

Function CheckIcon

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

Source from the content-addressed store, hash-verified

4import { Transition } from '@headlessui/react';
5
6function CheckIcon(props: React.ComponentPropsWithoutRef<'svg'>) {
7 return (
8 <svg viewBox="0 0 20 20" aria-hidden="true" {...props}>
9 <circle cx="10" cy="10" r="10" strokeWidth="0" />
10 <path
11 fill="none"
12 strokeLinecap="round"
13 strokeLinejoin="round"
14 strokeWidth="1.5"
15 d="m6.75 10.813 2.438 2.437c1.218-4.469 4.062-6.5 4.062-6.5"
16 />
17 </svg>
18 );
19}
20
21function FeedbackButton(
22 props: Omit<React.ComponentPropsWithoutRef<'button'>, 'type' | 'className'>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected