import React from "react";
type Props = {
children: React.ReactNode;
className?: string;
};
const Loader = ({ children, className = "" }: Props) => (
{children}
);
type ItemProps = {
height?: string;
width?: string;
};
const Item: React.FC = ({ height = "auto", width = "auto" }) => (
);
Loader.Item = Item;
export { Loader };