another one

This commit is contained in:
2025-02-22 20:12:27 +03:00
parent 1e803b4beb
commit b6fa50a59e
201 changed files with 5165 additions and 8036 deletions

27
frontend/node_modules/react-wavify/lib/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,27 @@
import React from 'react'
type WaveOptions = {
height?: number
amplitude?: number
speed?: number
points?: number
}
type BaseProps = Omit<
React.SVGProps<SVGPathElement>,
'ref' | 'height' | 'width' | 'points'
>
type WaveProps = BaseProps &
WaveOptions & {
paused?: boolean
fill?: string
options?: WaveOptions
ref?: string
svgId?: string
svgPathId?: string
}
declare const Wave: React.FC<WaveProps>
export = Wave