Browse
For agents
About
HubSpot All-In-One Marketing – Forms, Popups, Live Chat
/
11.0.7
HubSpot All-In-One Marketing – Forms, Popups, Live Chat
v11.0.7
Switch version
11.3.75
11.3.73
11.3.71
11.3.70
11.3.69
11.3.64
11.3.65
11.3.62
11.3.61
11.3.56
11.3.58
11.0.31
11.0.52
11.0.54
11.0.56
11.0.58
11.0.7
11.1.10
11.1.11
11.1.13
11.1.14
11.1.15
11.1.2
11.1.20
11.1.21
All 73 releases
Overview
Code
leadin
/
scripts
/
elementor
/
Common
/
ElementorBanner.tsx
ElementorBanner.tsx
in HubSpot All-In-One Marketing – Forms, Popups, Live Chat 11.0.7, at scripts/elementor/Common/ElementorBanner.tsx
21 lines
438 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
import
React
from
'
react
'
;
2
3
interface
IElementorBannerProps
{
4
type
?
:
string
;
5
}
6
7
export
default
function
ElementorBanner
(
{
8
type
=
'
warning
'
,
9
children
,
10
}
:
React
.
PropsWithChildren
<
IElementorBannerProps
>
)
{
11
return
(
12
<
div
className
=
"
elementor-control-content
"
>
13
<
div
14
className
=
{
`
elementor-control-raw-html elementor-panel-alert elementor-panel-alert-
${
type
}
`
}
15
>
16
{
children
}
17
</
div
>
18
</
div
>
19
)
;
20
}
21