UNPKG

michihouse-components-tmp

Version:

Biblioteca de componentes da MichiHouse

10 lines (9 loc) 294 B
import React from "react"; import { InputProps } from "@/components/ui/input"; interface InputWithButtonProps { inputType: InputProps["type"]; inputPlaceholder: string; buttonText: string; } declare const InputWithButton: React.FC<InputWithButtonProps>; export { InputWithButton };