mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2026-01-04 20:00:00 +08:00
- Updated migration status documentation to reflect the migration of 36 components, with 200 pending. - Enhanced the component status table with new entries for CustomCollapse, EmojiAvatar, ResetIcon, OcrIcon, ToolIcon, WrapIcon, UnWrapIcon, HelpTooltip, Selector, and WarnTooltip. - Updated index.ts to export the newly added components for improved accessibility.
9 lines
307 B
TypeScript
9 lines
307 B
TypeScript
// Original path: src/renderer/src/components/Icons/OcrIcon.tsx
|
|
import { FC } from 'react'
|
|
|
|
const OcrIcon: FC<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>> = (props) => {
|
|
return <i {...props} className={`iconfont icon-OCRshibie ${props.className}`} />
|
|
}
|
|
|
|
export default OcrIcon
|