diff --git a/src/components/atoms/Loader.tsx b/src/components/atoms/Loader.tsx index 6baea8ec..47996b25 100644 --- a/src/components/atoms/Loader.tsx +++ b/src/components/atoms/Loader.tsx @@ -1,12 +1,16 @@ import styled from "styled-components"; import { Stack } from "@mui/material"; -export const Loader = () => { +interface LoaderProps { + text: string +} + +export const Loader: React.FC = ({ text }) => { return ( - Loading... + {text} );