You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AliyunIconBig.tsx 526B

1234567891011121314151617181920
  1. // GENERATE BY script
  2. // DON NOT EDIT IT MANUALLY
  3. import * as React from 'react'
  4. import data from './AliyunIconBig.json'
  5. import IconBase from '@/app/components/base/icons/IconBase'
  6. import type { IconData } from '@/app/components/base/icons/IconBase'
  7. const Icon = (
  8. {
  9. ref,
  10. ...props
  11. }: React.SVGProps<SVGSVGElement> & {
  12. ref?: React.RefObject<React.MutableRefObject<HTMLOrSVGElement>>;
  13. },
  14. ) => <IconBase {...props} ref={ref} data={data as IconData} />
  15. Icon.displayName = 'AliyunIconBig'
  16. export default Icon