forked from github/plane
30 lines
581 B
TypeScript
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 };
|