import React, { FunctionComponent, HTMLAttributes } from 'react'; import getClassName from '../../helpers/getClassName'; import classNames from '../../lib/classNames'; import { HasRootRef } from '../../types'; import usePlatform from '../../hooks/usePlatform'; export interface ProgressProps extends HTMLAttributes, HasRootRef { value?: number; } const Progress: FunctionComponent = (props: ProgressProps) => { const { value, className, getRootRef, ...restProps } = props; const platform = usePlatform(); return (
); }; Progress.defaultProps = { value: 0, }; export default Progress;