UNPKG
@reusable-ui/modal
Version:
latest (6.7.4)
6.7.4
6.7.3
6.7.2
6.7.1
6.7.0
6.6.1
6.6.0
6.5.0
6.4.0
6.3.0
6.2.0
6.1.0
6.0.6
6.0.5
6.0.3
6.0.2
6.0.1
6.0.0
5.3.0
5.2.5
5.2.4
5.2.3
5.2.2
5.2.1
5.2.0
5.1.0
5.0.19
5.0.18
5.0.17
5.0.16
5.0.15
5.0.14
5.0.13
5.0.12
5.0.11
5.0.10
5.0.9
5.0.8
5.0.7
5.0.6
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
Overlays a dialog to the entire site's page.
reusableui.org
reusable-ui/reusable-ui-monorepo
@reusable-ui/modal
/
dist
/
variants
/
BackdropVariant.js
9 lines
(8 loc)
•
258 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// defaults:
const
_defaultBackdropStyle =
'regular'
;
export
const
useBackdropVariant
= (
{ backdropStyle = _defaultBackdropStyle }
) => {
return
{
class
: (backdropStyle ===
'regular'
) ?
null
: backdropStyle, }; };
//#endregion BackdropVariant