plane/apps/app/components/ui/loader.tsx
2023-02-16 12:03:52 +05:30

30 lines
581 B
TypeScript

import React from "react";
type Props = {
children: React.ReactNode;
className?: string;
};
const Loader = ({ children, className = "" }: Props) => (
<div className={`${className} animate-pulse`} role="status">
{children}
</div>
);
type ItemProps = {
height?: string;
width?: string;
light?: boolean;
};
const Item: React.FC<ItemProps> = ({ height = "auto", width = "auto", light }) => (
<div
className={`rounded-md ${light ? "bg-gray-200" : "bg-gray-300"}`}
style={{ height: height, width: width }}
/>
);
Loader.Item = Item;
export { Loader };