({ isActive, onClick, text, className, customStyle })
| 1 | import React from "react"; |
| 2 | |
| 3 | function ButtonField({ isActive, onClick, text, className, customStyle }) { |
| 4 | return ( |
| 5 | <div |
| 6 | onClick={onClick} |
| 7 | style={{ |
| 8 | width: '11rem' |
| 9 | }} |
| 10 | className={ |
| 11 | "flex items-center tracking-tight rounded-full gap-1 justify-center px-3 py-2 cursor-pointer transition-all hover:shadow-md font-semibold" + |
| 12 | " " + |
nothing calls this directly
no outgoing calls
no test coverage detected