diff --git a/app/dashboard/loading.tsx b/app/dashboard/loading.tsx index 7300483..4de21f2 100644 --- a/app/dashboard/loading.tsx +++ b/app/dashboard/loading.tsx @@ -1,12 +1,13 @@ import {metadata} from './page' import {SimpleLayout} from '@/components/layouts/SimpleLayout' +import {SpinnerIcon} from '@/components/icons/SpinnerIcon' export default function LoadingSkeleton() { return ( - + ) } \ No newline at end of file diff --git a/components/icons/SpinnerIcon.tsx b/components/icons/SpinnerIcon.tsx new file mode 100644 index 0000000..d82354f --- /dev/null +++ b/components/icons/SpinnerIcon.tsx @@ -0,0 +1,12 @@ +import {Props} from '@/types' + +export function SpinnerIcon(props: Props) { + return ( + + + + + ) +} \ No newline at end of file