UNPKG

@wix/design-system

Version:

@wix/design-system

11 lines 752 B
import React from 'react'; import { LinearProgressBarProps } from './LinearProgressBar.types'; import type { LinearProgressBarPropsWithAria } from './LinearProgressBarCore/LinearProgressBarCore'; type ControlledCoreProps = 'className' | 'data-hook' | 'error' | 'errorIcon' | 'successIcon' | 'rootModifiers'; type LinearProgressBarInternalProps = LinearProgressBarProps & Partial<Omit<LinearProgressBarPropsWithAria, ControlledCoreProps>>; declare function LinearProgressBar({ errorMessage, skin, light, dataHook, error, padding, height, ...otherProps }: LinearProgressBarInternalProps): React.JSX.Element; declare namespace LinearProgressBar { var displayName: string; } export { LinearProgressBar }; //# sourceMappingURL=LinearProgressBar.d.ts.map