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

Function ArrowIcon

apps/baseai.dev/src/components/ui/button.tsx:10–21  ·  view source on GitHub ↗
(props: React.ComponentPropsWithoutRef<'svg'>)

Source from the content-addressed store, hash-verified

8import cn from 'mxcn';
9
10function ArrowIcon(props: React.ComponentPropsWithoutRef<'svg'>) {
11 return (
12 <svg viewBox="0 0 20 20" fill="none" aria-hidden="true" {...props}>
13 <path
14 stroke="currentColor"
15 strokeLinecap="round"
16 strokeLinejoin="round"
17 d="m11.5 6.5 3 3.5m0 0-3 3.5m3-3.5h-9"
18 />
19 </svg>
20 );
21}
22
23const buttonVariants = cva(
24 'inline-flex items-center justify-center rounded-lg text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 select-none cursor-pointer',

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected