UNPKG

@combine-labs/combine-polaris

Version:

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

11 lines (10 loc) 288 B
/// <reference types="react" /> export declare type Size = 'small' | 'medium' | 'large' | 'extraLarge'; export interface Props { /** * Size of the text * @default 'medium' */ size?: Size; } export default function SkeletonDisplayText({ size }: Props): JSX.Element;