import * as React from "react";
import { theme } from "../theme/theme";
// Import styles
import { LoaderStyled } from "../styles";
const { Box, Shape } = LoaderStyled;
const Element = ({
width,
color,
animate,
marginRight,
transition,
}: {
width: number;
color: string;
transition: { duration: number; ease?: string; delay?: number };
animate: { right: string[] };
marginRight?: number;
}) => (
);
export function Loader() {
return (
);
}