2025-09-04 13:48:44 +01:00
|
|
|
import GenericTool from '../components/tools/shared/GenericTool';
|
|
|
|
import { removePasswordDefinition } from './definitions/removePasswordDefinition';
|
|
|
|
import { BaseToolProps, ToolComponent } from '../types/tool';
|
2025-08-18 15:26:29 +01:00
|
|
|
|
2025-08-28 10:59:38 +01:00
|
|
|
const RemovePassword = (props: BaseToolProps) => {
|
2025-09-04 13:48:44 +01:00
|
|
|
return <GenericTool definition={removePasswordDefinition} {...props} />;
|
2025-08-18 15:26:29 +01:00
|
|
|
};
|
|
|
|
|
2025-08-22 14:40:27 +01:00
|
|
|
// Static method to get the operation hook for automation
|
2025-09-04 13:48:44 +01:00
|
|
|
RemovePassword.tool = () => removePasswordDefinition.useOperation;
|
2025-08-22 14:40:27 +01:00
|
|
|
|
|
|
|
export default RemovePassword as ToolComponent;
|