@primer/react
Version:
An implementation of GitHub's Primer Design System using React
14 lines • 680 B
TypeScript
import React from 'react';
import { type SxProp } from '../../sx';
import { type CSSProperties, type HTMLProps } from 'react';
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;
} & SxProp & HTMLProps<HTMLDivElement>;
export declare const SkeletonBox: React.ForwardRefExoticComponent<Omit<SkeletonBoxProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export {};
//# sourceMappingURL=SkeletonBox.d.ts.map