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
/
Tooltip
/
TooltipIcon.d.ts
8 lines
(7 loc)
•
272 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
IconProps
}
from
'@iconify/react'
;
export
interface
TooltipIconProps
{
children
:
string
;
/** A materialui/core icon. */
icon
?:
IconProps
[
'icon'
]; }
export
default
function
TooltipIcon
(
props
:
TooltipIconProps
):
import
(
"react/jsx-runtime"
).
JSX
.
Element
;