.d.ts updates

This commit is contained in:
Tuğçe Küçükoğlu 2023-03-08 13:51:52 +03:00
parent cce7716ed9
commit 649d401152
49 changed files with 162 additions and 162 deletions

View file

@ -15,7 +15,7 @@ import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
export interface SkeletonProps {
/**
* Shape of the element.
* @defaultValue 'rectangle'
* @defaultValue rectangle
*/
shape?: 'rectangle' | 'circle' | undefined;
/**
@ -24,12 +24,12 @@ export interface SkeletonProps {
size?: string | undefined;
/**
* Width of the element.
* @defaultValue '100%'
* @defaultValue 100%
*/
width?: string | undefined;
/**
* Height of the element.
* @defaultValue '1rem'
* @defaultValue 1rem
*/
height?: string | undefined;
/**
@ -38,7 +38,7 @@ export interface SkeletonProps {
borderRadius?: string | undefined;
/**
* Type of the animation.
* @defaultValue 'wave'
* @defaultValue wave
*/
animation?: 'wave' | 'none' | undefined;
}