import type { ProgressProps as MantineProgressProps } from '@mantine/core'; import { Progress as MantineProgress } from '@mantine/core'; import { forwardRef } from 'react'; import styles from './progress.module.css'; export interface ProgressProps extends MantineProgressProps {} export const Progress = forwardRef( ({ classNames, style, ...props }, ref) => { return ( ); }, ); Progress.displayName = 'Progress';