16 lines
452 B
TypeScript
16 lines
452 B
TypeScript
// GENERATE BY script
|
|
// DON NOT EDIT IT MANUALLY
|
|
|
|
import * as React from 'react'
|
|
import cn from 'classnames'
|
|
import s from './MinimaxText.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 = 'MinimaxText'
|
|
|
|
export default Icon
|