UNPKG

@combine-labs/combine-polaris

Version:

Combine Lab's product component library. Forked from Shopify's Polaris.

10 lines (9 loc) 220 B
/// <reference types="react" /> export interface Props { /** * Number of lines to display * @default 3 */ lines?: number; } export default function SkeletonBodyText({ lines }: Props): JSX.Element;