UNPKG
intercom-react
Version:
latest (1.0.0-alpha.6)
1.0.0
1.0.0-alpha.6
1.0.0-alpha.5
1.0.0-alpha.3
An Intercom component for React.
github.com/kvendrik/intercom-react
kvendrik/intercom-react
intercom-react
/
src
/
utilities
/
injectCustomStyles.ts
10 lines
(9 loc)
•
255 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
export
default
function
injectCustomStyles
(
frame: HTMLIFrameElement, styles: string,
) {
const
{contentWindow} = frame;
const
node =
document
.
createElement
(
'style'
); node.
innerHTML
= styles; contentWindow!.
document
.
head
!.
appendChild
(node); }