UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

11 lines (10 loc) 327 B
import React from 'react'; import type { WaveComponent } from './interface'; export interface WaveProps { disabled?: boolean; children?: React.ReactNode; component?: WaveComponent; colorSource?: 'color' | 'backgroundColor' | 'borderColor' | null; } declare const Wave: React.FC<WaveProps>; export default Wave;