Popup Styles
ts
interface Popup {
background?: CSSProperties['background']
width?: CSSProperties['width']
textColor?: CSSProperties['color']
radius?: CSSProperties['borderRadius']
}
Preview
background
- Type:
CSSProperties['background']
- Default:
'#fff'
- Description: Specifies the background color of the popup.
width
- Type:
CSSProperties['width']
- Default:
600px
- Description: Specifies the width of the popup.
textColor
- Type:
CSSProperties['color']
- Default:
#333
- Description: Specifies the text color of the popup.
radius
- Type:
CSSProperties['borderRadius']
- Default:
24px
- Description: Specifies the border radius of the popup.