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

Function ArrowIcon

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

Source from the content-addressed store, hash-verified

2import clsx from 'clsx';
3
4function ArrowIcon(props: React.ComponentPropsWithoutRef<'svg'>) {
5 return (
6 <svg viewBox="0 0 20 20" fill="none" aria-hidden="true" {...props}>
7 <path
8 stroke="currentColor"
9 strokeLinecap="round"
10 strokeLinejoin="round"
11 d="m11.5 6.5 3 3.5m0 0-3 3.5m3-3.5h-9"
12 />
13 </svg>
14 );
15}
16
17const variantStyles = {
18 primary:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected