mirror of
https://github.com/langgenius/webapp-conversation.git
synced 2025-12-24 08:36:39 +08:00
- Replace .eslintrc.json with eslint.config.mjs - Simplify configuration using @antfu/eslint-config - Add necessary ESLint plugin dependencies - Disable overly strict style rules - Set package.json type to module for ESM support - Fix ESLint disable comment format 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
519 B
TypeScript
21 lines
519 B
TypeScript
// GENERATE BY script
|
|
// DON NOT EDIT IT MANUALLY
|
|
|
|
import * as React from 'react'
|
|
import data from './ReplayLine.json'
|
|
import IconBase from '@/app/components/base/icons/IconBase'
|
|
import type { IconData } from '@/app/components/base/icons/IconBase'
|
|
|
|
const Icon = (
|
|
{
|
|
ref,
|
|
...props
|
|
}: React.SVGProps<SVGSVGElement> & {
|
|
ref?: React.RefObject<React.MutableRefObject<HTMLOrSVGElement>>
|
|
},
|
|
) => <IconBase {...props} ref={ref} data={data as IconData} />
|
|
|
|
Icon.displayName = 'ReplayLine'
|
|
|
|
export default Icon
|