UNPKG

@yamada-ui/react

Version:

React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion

19 lines (18 loc) 599 B
import { Component, HTMLStyledProps } from "../../core/components/index.types.js"; import "../../core/index.js"; import { SkeletonProps } from "./skeleton.js"; //#region src/components/skeleton/skeleton-text.d.ts interface SkeletonTextProps extends Omit<SkeletonProps, "lineClamp"> { /** * The number of lines to display. */ lineClamp?: number; /** * Props for the root element. */ rootProps?: HTMLStyledProps; } declare const SkeletonText: Component<"div", SkeletonTextProps>; //#endregion export { SkeletonText, SkeletonTextProps }; //# sourceMappingURL=skeleton-text.d.ts.map