import React, { InputHTMLAttributes } from "react"; type Props = InputHTMLAttributes; export const Input = ({ className, ...props }: Props) => { const classes = ["c__input"]; if (className) { classes.push(className); } return ; };