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

Function FeedbackButton

apps/baseai.dev/src/components/Feedback.tsx:21–31  ·  view source on GitHub ↗
(
	props: Omit<React.ComponentPropsWithoutRef<'button'>, 'type' | 'className'>
)

Source from the content-addressed store, hash-verified

19}
20
21function FeedbackButton(
22 props: Omit<React.ComponentPropsWithoutRef<'button'>, 'type' | 'className'>
23) {
24 return (
25 <button
26 type="submit"
27 className="px-3 text-sm font-medium text-zinc-600 transition hover:bg-zinc-900/2.5 hover:text-zinc-900 dark:text-zinc-400 dark:hover:bg-white/5 dark:hover:text-white"
28 {...props}
29 />
30 );
31}
32
33const FeedbackForm = forwardRef<
34 React.ElementRef<'form'>,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected