UNPKG
@wener/ui
Version:
latest (1.0.0-alpha.18)
1.0.0-alpha.18
1.0.0-alpha.17
1.0.0-alpha.16
1.0.0-alpha.15
1.0.0-alpha.13
1.0.0-alpha.12
1.0.0-alpha.11
1.0.0-alpha.10
1.0.0-alpha.9
1.0.0-alpha.8
1.0.0-alpha.7
1.0.0-alpha.6
@wener/ui
/
src
/
icons
/
demo-resolver.ts
16 lines
(13 loc)
•
290 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{
LazyComponentType
}
from
'../types/types'
;
export
function
resolver
(
{
type
}
) {
const
c
:
LazyComponentType
|
null
=
null
;
// @formatter:off
// prettier-ignore
switch
(
type
) {
// generated:begin
// generated:end
// @formatter:on
default
: }
return
c; }