UNPKG
formsflow-theming
Version:
latest (2.4.8)
2.4.8
2.4.7
US Web Design System templates for form.io
github.com/formio/uswds
formio/uswds
formsflow-theming
/
lib
/
templates
/
uswds
/
size.js
12 lines
(11 loc)
•
331 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
default
= (
function
(
size
) {
switch
(size) {
case
'xs'
:
return
''
;
case
'sm'
:
return
'mobile-lg'
;
case
'md'
:
return
'tablet'
;
case
'lg'
:
return
'desktop'
;
default
:
return
'tablet'
; } });