diff --git a/ui/src/app/applications/components/pod-logs-viewer/clear-logs-button.tsx b/ui/src/app/applications/components/pod-logs-viewer/clear-logs-button.tsx new file mode 100644 index 0000000000..62f35d2b81 --- /dev/null +++ b/ui/src/app/applications/components/pod-logs-viewer/clear-logs-button.tsx @@ -0,0 +1,9 @@ +import * as React from 'react'; +import {Button} from '../../../shared/components/button'; + +interface ClearLogsButtonProps { + disabled?: boolean; + onClear: () => void; +} + +export const ClearLogsButton = ({disabled, onClear}: ClearLogsButtonProps) =>