import { cn } from "@/lib/utils"; import { Input } from "./input"; interface InputColorProps { className?: string; placeholder?: string; size?: "sm" | "lg" | "default" | "xs"; value?: string; onChange?: (value: string) => void; } const InputColor = ({ className, placeholder, size = "xs", value = "#44bd32", onChange, }: InputColorProps) => { return (
onChange && onChange(e.target.value)} />
); }; export default InputColor;