UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

46 lines 1 kB
import React from 'react'; import { BoxProps } from '../box/interfaces'; import { ProgressBarProps } from './interfaces'; interface ProgressProps { value: number; isInFlash: boolean; ariaLabel?: string; ariaLabelledby?: string; ariaDescribedby?: string; style?: ProgressBarProps.Style; } export declare const Progress: ({ value, isInFlash, ariaLabel, ariaLabelledby, ariaDescribedby, style }: ProgressProps) => JSX.Element; interface SmallTextProps { color?: BoxProps.Color; id?: string; children: React.ReactNode; className?: string; } export declare const SmallText: ({ color, children, className, id }: SmallTextProps) => JSX.Element; interface ResultStateProps { isInFlash: boolean; resultText: React.ReactNode; resultButtonText?: string; status: ProgressBarProps.Status; onClick: () => void; } export declare const ResultState: ({ isInFlash, resultText, resultButtonText, status, onClick }: ResultStateProps) => JSX.Element; export {};