mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
26 lines
521 B
TypeScript
26 lines
521 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;
|
|
};
|
|
|
|
const Item: React.FC<ItemProps> = ({ height = "auto", width = "auto" }) => (
|
|
<div className="rounded-md bg-brand-surface-2" style={{ height: height, width: width }} />
|
|
);
|
|
|
|
Loader.Item = Item;
|
|
|
|
export { Loader };
|