@primer/react
Version:
An implementation of GitHub's Primer Design System using React
12 lines • 621 B
TypeScript
import React from 'react';
import { type CSSProperties, type HTMLProps } from 'react';
export type SkeletonBoxProps = {
/** Height of the skeleton "box". Accepts any valid CSS `height` value. */
height?: CSSProperties['height'];
/** Width of the skeleton "box". Accepts any valid CSS `width` value. */
width?: CSSProperties['width'];
/** The className of the skeleton box */
className?: string;
} & HTMLProps<HTMLElement>;
export declare const SkeletonBox: React.ForwardRefExoticComponent<Omit<SkeletonBoxProps, "ref"> & React.RefAttributes<HTMLElement>>;
//# sourceMappingURL=SkeletonBox.d.ts.map