Inputs
  • ui
  • /
  • inputs
  • /
  • input-3

input-3

  • Vista previa

  • Código

    const Input3 = () => {
      return (
        <div className="w-full max-w-lg relative">
          <i className="fi fi-rr-user text-muted-foreground absolute top-1/2 -translate-y-1/2 left-4 mt-0.5" />
          <input
            className="w-full bg-background-secondary py-3 pl-12 pr-4 rounded-lg outline-none placeholder:text-muted-foreground"
            placeholder="Nombre"
          />
        </div>
      );
    };
    
    export default Input3;