DocSpace-client/packages/shared/skeletons/index.ts

19 lines
546 B
TypeScript

import { CircleSkeleton, CircleSkeletonProps } from "./circle";
import { RectangleSkeleton, RectangleSkeletonProps } from "./rectangle";
import { ContextMenuSkeleton } from "./context-menu";
import { DialogSkeleton, DialogAsideSkeleton } from "./dialog";
import { RowsSkeleton } from "./rows";
import { TableSkeleton } from "./table";
export type { CircleSkeletonProps, RectangleSkeletonProps };
export {
RectangleSkeleton,
CircleSkeleton,
ContextMenuSkeleton,
DialogSkeleton,
DialogAsideSkeleton,
RowsSkeleton,
TableSkeleton,
};