diff --git a/src/shared/components/Loading.js b/src/shared/components/Loading.js index a08f886..52cdafe 100644 --- a/src/shared/components/Loading.js +++ b/src/shared/components/Loading.js @@ -1,21 +1,21 @@ 'use client'; import React from 'react'; -import { Recycle03Icon } from '../icons/index.js'; const Loading = ({ size = 'md' }) => { const sizes = { - sm: 'w-6 h-6', - md: 'w-10 h-10', - lg: 'w-16 h-16' + sm: 'w-5 h-5', + md: 'w-8 h-8', + lg: 'w-12 h-12' }; return (
-
- -
-

Loading....

+ + + + +

Chargement

); };