@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and TailwindCSS
12 lines (11 loc) • 389 B
TypeScript
import { Colors, Shapes } from "./Skeleton.constants.js";
import { AllHTMLAttributes, ReactNode } from "react";
//#region src/components/Skeleton/Skeleton.types.d.ts
interface SkeletonProps extends AllHTMLAttributes<HTMLDivElement> {
shape: `${Shapes}`;
children?: ReactNode;
color?: `${Colors}`;
}
//#endregion
export { SkeletonProps };
//# sourceMappingURL=Skeleton.types.d.ts.map