interface SkeletonLineProps {
    size?: "XS" | "S" | "M" | "L" | "XL" | "3XL" | "4XL" | "5XL" | "2XS" | "2XL" | "6XL";
    width: number | "full";
}

Properties

Properties

size?: "XS" | "S" | "M" | "L" | "XL" | "3XL" | "4XL" | "5XL" | "2XS" | "2XL" | "6XL"

Vertical size of the skeleton. This matches Typography sizes`

width: number | "full"

Width of the skeleton. When a number is provided, the width will match that number of full-width characters. E.g., if width is 10, the skeleton will be 10 characters wide.

Generated using TypeDoc