1
0
Fork 0
blog/src/components/atoms/Input.tsx

7 lines
238 B
TypeScript
Raw Normal View History

2020-05-22 14:38:19 +02:00
import React, { ReactElement } from 'react'
2021-03-14 01:34:04 +01:00
import { input } from './Input.module.css'
2019-10-02 13:35:50 +02:00
2021-03-07 02:48:05 +01:00
export default function Input({ className, ...props }: any): ReactElement {
2021-03-14 01:34:04 +01:00
return <input className={`${input} ${className || ''}`} {...props} />
2019-10-02 13:35:50 +02:00
}