@fluentui/react-northstar
Version:
A themable React component library.
14 lines (13 loc) • 653 B
TypeScript
import { SkeletonShapeProps } from './SkeletonShape';
export interface SkeletonInputOwnProps {
/** A skeleton input can fill the width of its container. */
fluid?: boolean;
}
export interface SkeletonInputProps extends SkeletonInputOwnProps, SkeletonShapeProps {
}
export declare type SkeletonInputStylesProps = Required<Pick<SkeletonInputOwnProps, 'fluid'>>;
export declare const skeletonInputClassName = "ui-skeleton__input";
/**
* An SkeletonInput represents a input component that will be loaded
*/
export declare const SkeletonInput: import("@fluentui/react-bindings").ComponentWithAs<"span", SkeletonInputOwnProps & SkeletonShapeProps>;