mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-09-24 12:36:13 +00:00
13 lines
516 B
TypeScript
13 lines
516 B
TypeScript
import GenericTool from '../components/tools/shared/GenericTool';
|
|
import { removePasswordDefinition } from './definitions/removePasswordDefinition';
|
|
import { BaseToolProps, ToolComponent } from '../types/tool';
|
|
|
|
const RemovePassword = (props: BaseToolProps) => {
|
|
return <GenericTool definition={removePasswordDefinition} {...props} />;
|
|
};
|
|
|
|
// Static method to get the operation hook for automation
|
|
RemovePassword.tool = () => removePasswordDefinition.useOperation;
|
|
|
|
export default RemovePassword as ToolComponent;
|