UNPKG

react-poptart

Version:

A simple and elegant notification toaster for React.js

12 lines (11 loc) 335 B
import React from 'react'; import { I_PoptartConfig, I_PoptartProps } from './types'; interface ProgressBarProps { poptart: I_PoptartProps; height: number; backgroundColor: string; config: I_PoptartConfig; colorOverride?: string; } declare const ProgressBar: React.FC<ProgressBarProps>; export default ProgressBar;