diff --git a/src/components/design/Loader/Loader.tsx b/src/components/design/Loader/Loader.tsx new file mode 100644 index 0000000..ff33d69 --- /dev/null +++ b/src/components/design/Loader/Loader.tsx @@ -0,0 +1,67 @@ +import type { HTMLMotionProps } from 'framer-motion' + +import { AnimateView } from '../../system' + +interface LoaderProps extends HTMLMotionProps<'main'> { + active: boolean +} + +export const Loader: React.FC = ({ active, ...rest }) => { + return ( + + + + + + + + + + + + + + + ) +} diff --git a/src/components/design/Loader/index.ts b/src/components/design/Loader/index.ts new file mode 100644 index 0000000..4e20d2b --- /dev/null +++ b/src/components/design/Loader/index.ts @@ -0,0 +1 @@ +export * from './Loader'