UNPKG
mwcpl
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Master's Web Component Pattern Library
github.com/zanozbot/mwcpl
zanozbot/mwcpl
mwcpl
/
dist
/
types
/
components
/
mwcpl-fab
/
mwcpl-fab.d.ts
13 lines
(12 loc)
•
291 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
ComponentInterface
}
from
'../../stencil-public-runtime'
;
export
declare
class
MwcplFab
implements
ComponentInterface
{
/** * Label for the FAB. */
label
:
string
;
/** * Creates a smaller of FAB. */
mini
:
boolean
;
render
():
any
; }