xtreme-ui
Version:
Collection of reusable components that can be used in web projects
15 lines • 328 B
TypeScript
export type TLottieProps = {
className?: string;
src: string;
size?: number | keyof typeof ELottieSize;
controls?: boolean;
autoPlay?: boolean;
loop?: boolean;
speed?: number;
};
export declare enum ELottieSize {
mini = 64,
default = 128,
large = 256
}
//# sourceMappingURL=types.d.ts.map