ukelli-ui
Version:
Base on React's UI lib. Make frontend's dev simpler and faster.
17 lines (16 loc) • 454 B
TypeScript
import { PureComponent } from 'react';
interface CountdownBgProps {
percent: any;
firstStopColor: any;
secondStopColor: any;
}
export default class CountdownBg extends PureComponent<CountdownBgProps> {
static defaultProps: {
percent: number;
firstStopColor: string;
secondStopColor: string;
};
static setBgColor: (firstStopColor: any, secondStopColor: any) => void;
render(): JSX.Element;
}
export {};