Files
live-call-asr-monitor/frontend-redesign/patch_icons.py
2026-07-16 11:24:02 +08:00

10 lines
306 B
Python

import re
with open('src/components/RuleManagement.tsx', 'r') as f:
content = f.read()
content = content.replace(" Check\n} from 'lucide-react';", " Check,\n Upload,\n Download,\n FileDown\n} from 'lucide-react';")
with open('src/components/RuleManagement.tsx', 'w') as f:
f.write(content)