@kuma-ui/system
Version:
🐻 Kuma UI is a utility-first, zero-runtime CSS-in-JS library that offers an outstanding developer experience and optimized performance.
10 lines (7 loc) • 554 B
TypeScript
import { AnimationKeys } from '../keys.js';
import { CSSProperties } from '../types.js';
import 'csstype';
import '@kuma-ui/sheet';
type AnimationProps = Partial<CSSProperties<"animation" | "animationComposition" | "animationDelay" | "animationDirection" | "animationDuration" | "animationFillMode" | "animationName" | "animationPlayState" | "animationTimeline" | "animationTimingFunction"> & CSSProperties<"animationIterationCount", true>>;
declare const animationMappings: Record<AnimationKeys, string>;
export { AnimationProps, animationMappings };