| 123456789101112131415 |
- // GENERATE BY script
- // DON NOT EDIT IT MANUALLY
-
- import * as React from 'react'
- import cn from 'classnames'
- import s from './Minimax.module.css'
-
- const Icon = React.forwardRef<HTMLSpanElement, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>((
- { className, ...restProps },
- ref,
- ) => <span className={cn(s.wrapper, className)} {...restProps} ref={ref} />)
-
- Icon.displayName = 'Minimax'
-
- export default Icon
|