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