smart-react-components
Version:
React UI library, wide variety of editable ready to use Styled and React components.
9 lines (8 loc) • 359 B
TypeScript
import React from "react";
import { SetValue$ } from "../types/color-picker";
export declare const InputElement: import("styled-components").StyledComponent<"input", any, {}, never>;
interface Props {
setValue: SetValue$;
}
declare const Input: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLInputElement>>;
export default Input;