mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2026-01-03 11:19:10 +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.
19 lines
526 B
TypeScript
19 lines
526 B
TypeScript
// Original path: src/renderer/src/components/Icons/UnWrapIcon.tsx
|
|
const UnWrapIcon = (props: React.SVGProps<SVGSVGElement>) => (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="1em"
|
|
height="1em"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
className="unwrap_svg__lucide unwrap_svg__lucide-text unwrap_svg__size-4"
|
|
viewBox="0 0 24 24"
|
|
{...props}>
|
|
<path d="M17 6.1H3M21 12.1H3M15.1 18H3" />
|
|
</svg>
|
|
)
|
|
export default UnWrapIcon
|