UNPKG
fannypack-v5
Version:
latest (5.0.0-rc.7)
5.0.0-rc.7
5.0.0-rc.0
An accessible, composable, and friendly React UI Kit
github.com/fannypackui
fannypackui/fannypack
fannypack-v5
/
src
/
Button
/
index.ts
10 lines
(8 loc)
•
262 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
*
as
styles
from
'./styles'
;
import
{
Button
as
_Button }
from
'./Button'
;
import
{
ButtonClose
}
from
'./ButtonClose'
;
export
*
from
'./Button'
;
export
const
Button
=
Object
.
assign
(_Button, {
Close
:
ButtonClose
, });
export
{ styles
as
buttonStyles };