This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/node_modules/react-wavify/lib/index.d.ts
2025-02-22 20:12:27 +03:00

28 lines
456 B
TypeScript

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