59 lines
1.4 KiB
TypeScript
59 lines
1.4 KiB
TypeScript
// Alert
|
|
import AlertCustom from "./Alert/AlertCustom";
|
|
// Button
|
|
import LeftButtonCustom from "./Button/BackButton";
|
|
import ButtonCenteredOnly from "./Button/ButtonCenteredOnly";
|
|
import ButtonCustom from "./Button/ButtonCustom";
|
|
import ButtonUpload from "./Button/ButtonUpload";
|
|
// Drawer
|
|
import DrawerCustom from "./Drawer/DrawerCustom";
|
|
import MenuDrawerDynamicGrid from "./Drawer/MenuDrawerDynamicGird";
|
|
// ShareComponent
|
|
import Spacing from "./_ShareComponent/Spacing";
|
|
import ViewWrapper from "./_ShareComponent/ViewWrapper";
|
|
// Text
|
|
import TextCustom from "./Text/TextCustom";
|
|
// TextInput
|
|
import { TextInputCustom } from "./TextInput/TextInputCustom";
|
|
// TextArea
|
|
import TextAreaCustom from "./TextArea/TextAreaCustom";
|
|
// Grid
|
|
import Grid from "./Grid/GridCustom";
|
|
// Box
|
|
import BaseBox from "./Box/BaseBox";
|
|
// Avatar
|
|
import AvatarCustom from "./Image/AvatarCustom";
|
|
// Stack
|
|
import StackCustom from "./Stack/StackCustom";
|
|
// Select
|
|
import SelectCustom from "./Select/SelectCustom";
|
|
|
|
export {
|
|
AlertCustom,
|
|
// Avatar
|
|
AvatarCustom,
|
|
// Button
|
|
LeftButtonCustom as BackButton,
|
|
// Box
|
|
BaseBox, ButtonCenteredOnly, ButtonCustom, ButtonUpload,
|
|
// Drawer
|
|
DrawerCustom,
|
|
// Grid
|
|
Grid, MenuDrawerDynamicGrid,
|
|
// Select
|
|
SelectCustom,
|
|
// ShareComponent
|
|
Spacing,
|
|
// Stack
|
|
StackCustom,
|
|
// TextArea
|
|
TextAreaCustom,
|
|
// Text
|
|
TextCustom,
|
|
// TextInput
|
|
TextInputCustom,
|
|
// ViewWrapper
|
|
ViewWrapper
|
|
};
|
|
|