carpooluikit
Version:
carpool finance uikit
16 lines (15 loc) • 504 B
TypeScript
import { LayoutProps, SpaceProps } from "styled-system";
export declare const animation: {
readonly WAVES: "waves";
readonly PULSE: "pulse";
};
export declare const variant: {
readonly RECT: "rect";
readonly CIRCLE: "circle";
};
export declare type Animation = typeof animation[keyof typeof animation];
export declare type Variant = typeof variant[keyof typeof variant];
export interface SkeletonProps extends SpaceProps, LayoutProps {
animation?: Animation;
variant?: Variant;
}