import React from 'react'; import cn from 'classnames'; import styles from './index.module.css'; export type HatchingProgressBarProps = { /** * Значение заполненной части 0-100 */ value: number; /** * Значение будущей заполненной части 0-100 */ hatchValue: number; /** * Css-класс для стилизации */ className?: string; /** * Цвет заполнения */ view?: | 'positive' | 'negative' | 'attention' | 'link' | 'tertiary' | 'secondary' | 'primary' | 'accent'; /** * Id компонента для тестов */ dataTestId?: string; }; export const HatchingProgressBar = React.forwardRef( ({ className, value, hatchValue, view = 'positive', dataTestId }, ref) => ( // eslint-disable-next-line jsx-a11y/control-has-associated-label
), ); HatchingProgressBar.displayName = 'HatchingProgressBar';