UNPKG

lightswind

Version:

A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.

7 lines 318 B
import * as React from "react"; import { HTMLMotionProps } from "framer-motion"; export interface InputProps extends HTMLMotionProps<"input"> { } declare const Input: React.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React.RefAttributes<HTMLInputElement>>; export { Input }; //# sourceMappingURL=input.d.ts.map