@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
12 lines (11 loc) • 510 B
TypeScript
import type { FlattenSimpleInterpolation } from "styled-components";
export declare const resolveValue: (value: string | number) => string;
export declare const resolveHeight: ({ calculatedHeight, height, }: {
calculatedHeight: number;
height: number | string;
}) => string;
export declare const resolvePulseAnimation: ({ animate, duration, interval, }: {
animate?: boolean | undefined;
duration?: string | undefined;
interval?: string | undefined;
}) => FlattenSimpleInterpolation | null;