@fremtind/jkl-core
Version:
Jøkul core styles
17 lines (16 loc) • 460 B
TypeScript
export type Easing = keyof typeof easings;
export declare const easings: Readonly<{
standard: "ease";
entrance: "ease-out";
exit: "ease-in";
easeInBounceOut: "cubic-bezier(0, 0, 0.375, 1.17)";
focus: "cubic-bezier(0.6, 0.2, 0.35, 1)";
}>;
export type Timing = keyof typeof timings;
export declare const timings: Readonly<{
energetic: "75ms";
snappy: "100ms";
productive: "150ms";
expressive: "250ms";
lazy: "400ms";
}>;