@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
17 lines (16 loc) • 592 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { SystemProps } from "../system/system.js";
import "../system/index.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