| 4 | import clsx from "clsx"; |
| 5 | |
| 6 | interface LabelProps { |
| 7 | left?: React.ReactNode; |
| 8 | type?: string; |
| 9 | toolTipProperties?: toolTipProperties; |
| 10 | } |
| 11 | |
| 12 | const Label = ({ type, left, toolTipProperties }: LabelProps) => { |
| 13 | const isTypeTextArea = () => { |
nothing calls this directly
no outgoing calls
no test coverage detected