mirror of
https://github.com/logos-storage/logos-storage-marketplace-ui.git
synced 2026-01-08 00:13:06 +00:00
14 lines
196 B
TypeScript
14 lines
196 B
TypeScript
import "./ProgressCircle.css";
|
|
|
|
type Props = {
|
|
value: number;
|
|
};
|
|
|
|
export function ProgressCircle(_: Props) {
|
|
return (
|
|
<div className="progress-circle">
|
|
<div></div>
|
|
</div>
|
|
);
|
|
}
|