@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
12 lines (11 loc) • 528 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import { SystemProps } from "../system/system.js";
//#region src/skeleton/skeleton.types.d.ts
type SkeletonProps = SystemProps & ThemingProps<'Skeleton'> & {
/** Children are disabled for this component. */children?: never; /** Available theme colors for this component. @deprecated */
colorScheme?: 'blue' | 'grey'; /** Displays given amount of skeleton elements. */
repeat?: number;
};
//#endregion
export { SkeletonProps };
//# sourceMappingURL=skeleton.types.d.ts.map