Files
hipmi-mobile/components/index.ts
2025-07-02 12:20:42 +08:00

31 lines
771 B
TypeScript

// Alert
import AlertCustom from "./Alert/AlertCustom";
// Button
import BackButton from "./Button/BackButton";
import ButtonCustom from "./Button/ButtonCustom";
// Drawer
import DrawerCustom from "./Drawer/DrawerCustom";
import MenuDrawerDynamicGrid from "./Drawer/MenuDrawerDynamicGird";
// ShareComponent
import ViewWrapper from "./_ShareComponent/ViewWrapper";
import TruncatedText from "./_ShareComponent/TruncatedText";
import Spacing from "./_ShareComponent/Spacing";
// TextInput
import { TextInputCustom } from "./TextInput/TextInputCustom";
export {
AlertCustom,
// Button
BackButton,
ButtonCustom,
// Drawer
DrawerCustom,
MenuDrawerDynamicGrid,
// ShareComponent
Spacing,
TruncatedText,
ViewWrapper,
// TextInput
TextInputCustom,
};