| 4 | import Link from "components/common/Link"; |
| 5 | |
| 6 | export interface ButtonProps |
| 7 | extends React.ButtonHTMLAttributes<HTMLDivElement> { |
| 8 | size?: "small" | "large"; |
| 9 | className?: string; |
| 10 | empty?: boolean; |
| 11 | square?: boolean; |
| 12 | disabled?: boolean; |
| 13 | to?: string; |
| 14 | external?: boolean; |
| 15 | } |
| 16 | |
| 17 | export default function Button({ |
| 18 | children, |
nothing calls this directly
no outgoing calls
no test coverage detected