| 1 | import { ButtonHTMLAttributes, DetailedHTMLProps, ReactNode } from 'react'; |
| 2 | |
| 3 | export interface ButtonProps extends |
| 4 | Omit<DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, |
| 5 | 'onAnimationStart' | 'onDragStart' | 'onDragEnd' | 'onDrag' | 'ref'> { |
| 6 | children: ReactNode; |
| 7 | appearance: 'primary' | 'ghost'; |
| 8 | arrow?: 'right' | 'down' | 'none'; |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected