JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "progress-bar.tsx"

Full Path: /home/markqprx/iniasli.pro/client/ui/progress/progress-bar.tsx
File size: 269 bytes
MIME-type: text/plain
Charset: utf-8

import React from 'react';
import {ProgressBarBase, ProgressBarBaseProps} from './progress-bar-base';

interface Props extends ProgressBarBaseProps {
  isIndeterminate?: boolean;
}

export function ProgressBar(props: Props) {
  return <ProgressBarBase {...props} />;
}