您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Minimax.tsx 444B

123456789101112131415
  1. // GENERATE BY script
  2. // DON NOT EDIT IT MANUALLY
  3. import * as React from 'react'
  4. import cn from 'classnames'
  5. import s from './Minimax.module.css'
  6. const Icon = React.forwardRef<HTMLSpanElement, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>((
  7. { className, ...restProps },
  8. ref,
  9. ) => <span className={cn(s.wrapper, className)} {...restProps} ref={ref} />)
  10. Icon.displayName = 'Minimax'
  11. export default Icon