| 2 | import clsx from "clsx"; |
| 3 | |
| 4 | interface ButtonProps { |
| 5 | onClick: () => void; |
| 6 | text: string; |
| 7 | Icon: any; |
| 8 | className?: string; |
| 9 | } |
| 10 | |
| 11 | /** |
| 12 | * @description Button component. Takes text, an icon, and an onClick function. |
nothing calls this directly
no outgoing calls
no test coverage detected