mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-29 16:28:12 +00:00
Project Initialization
This commit is contained in:
26
packages/ui-common/src/index.ts
Normal file
26
packages/ui-common/src/index.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
export { default as Button } from './components/Button';
|
||||
export type { ButtonProps, ButtonVariant, ButtonSize } from './components/Button';
|
||||
|
||||
export { default as Table } from './components/Table';
|
||||
export type { TableProps, TableColumn } from './components/Table';
|
||||
|
||||
export { FormField } from './components/Form';
|
||||
export type { FormFieldProps } from './components/Form';
|
||||
|
||||
export { default as Modal } from './components/Modal';
|
||||
export type { ModalProps } from './components/Modal';
|
||||
|
||||
export { default as Badge } from './components/Badge';
|
||||
export type { BadgeProps, BadgeTone } from './components/Badge';
|
||||
|
||||
export {
|
||||
Sidebar,
|
||||
DashboardLayout,
|
||||
} from './components/Layout';
|
||||
export type {
|
||||
SidebarProps,
|
||||
SidebarItem,
|
||||
DashboardLayoutProps,
|
||||
} from './components/Layout';
|
||||
|
||||
export * from './theme';
|
||||
Reference in New Issue
Block a user