feat: 新增OCR识别导入基金

This commit is contained in:
hzm
2026-02-18 22:34:11 +08:00
parent 3c02b53c0e
commit 67c36f65df
6 changed files with 1026 additions and 502 deletions

View File

@@ -227,3 +227,12 @@ export function MinusIcon(props) {
</svg>
);
}
export function CameraIcon(props) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
<path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z" />
<circle cx="12" cy="13" r="4" />
</svg>
);
}