UNPKG
@faakhir/headlamp-plugin
Version:
latest (0.11.5-dev)
0.11.5-dev
0.11.4-dev
The needed infrastructure for building Headlamp plugins.
@faakhir/headlamp-plugin
/
lib
/
components
/
common
/
ShowHideLabel
/
ShowHideLabel.d.ts
8 lines
(7 loc)
•
241 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
interface
ShowHideLabelProps
{
children
:
string
;
show
?:
boolean
;
labelId
?:
string
;
maxChars
?:
number
; }
export
default
function
ShowHideLabel
(
props
:
ShowHideLabelProps
):
import
(
"react/jsx-runtime"
).
JSX
.
Element
|
null
;