ui-nyla/src/components/FormGenerator/ActionButtons/index.ts

11 lines
556 B
TypeScript

// Action Button Components
export { EditActionButton } from './EditActionButton';
export { DeleteActionButton } from './DeleteActionButton';
export { DownloadActionButton } from './DownloadActionButton';
export { ViewActionButton } from './ViewActionButton';
// Action Button Types
export type { EditActionButtonProps } from './EditActionButton';
export type { DeleteActionButtonProps } from './DeleteActionButton';
export type { DownloadActionButtonProps } from './DownloadActionButton';
export type { ViewActionButtonProps } from './ViewActionButton';