mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
29 lines
538 B
TypeScript
29 lines
538 B
TypeScript
import default_button from './default';
|
|
import disabled_button from './disabled';
|
|
import sizes from './sizes';
|
|
import color from './color';
|
|
import shadow from './shadow';
|
|
import loading from './loading';
|
|
import bordered from './bordered';
|
|
import rounded from './rounded';
|
|
import ghost from './ghost';
|
|
import flat from './flat';
|
|
import light from './light';
|
|
import icon from './icon';
|
|
|
|
export default {
|
|
default_button,
|
|
disabled_button,
|
|
sizes,
|
|
color,
|
|
shadow,
|
|
loading,
|
|
bordered,
|
|
rounded,
|
|
ghost,
|
|
flat,
|
|
light,
|
|
icon
|
|
|
|
};
|