From 8e907e75ea1efa555ba66332b73d2f54283331c6 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 14 Mar 2021 05:43:24 +0300 Subject: feat: add Input component --- src/components/Button.tsx | 28 ++++++++++++++-------------- src/components/Input.tsx | 21 +++++++++++++++++++++ 2 files changed, 35 insertions(+), 14 deletions(-) create mode 100644 src/components/Input.tsx (limited to 'src') diff --git a/src/components/Button.tsx b/src/components/Button.tsx index bf98755..b715ba9 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -1,14 +1,13 @@ import React, { useCallback } from 'react'; import { useHistory } from 'react-router-dom'; -export type Props = Partial<{ - onClick: () => void; - route: string; - variant: 'contained' | 'outlined'; - size: 'sm' | 'md' | 'lg'; - children: string; -}> - +export interface Props extends React.ButtonHTMLAttributes { + onClick?: () => void; + route?: string; + variant?: 'contained' | 'outlined'; + size?: 'sm' | 'md' | 'lg'; + children?: string; +} const variants = { contained: 'bg-black text-white', @@ -21,18 +20,19 @@ const sizes = { sm: 'p-3', }; -const Button: React.FC = ({ onClick, route, variant = 'contained', size = 'md', children }) => { +const style = 'm-3 font-bold tracking-wide hover:underline focus:outline-none border-2 border-black'; + +const Button: React.FC = ({ onClick, route, variant = 'contained', size = 'md', type = 'button', ...props }) => { const history = useHistory(); const navigateRoute = useCallback(() => history.push(route || '/'), [route, history]); return ( + className={`${style} ${variants[variant]} ${sizes[size]}`} + {...props} + /> ); }; diff --git a/src/components/Input.tsx b/src/components/Input.tsx new file mode 100644 index 0000000..69b97a2 --- /dev/null +++ b/src/components/Input.tsx @@ -0,0 +1,21 @@ +import React from 'react'; + +export interface Props extends React.InputHTMLAttributes { + label?: string; +} + +const Input: React.FC = ({ label, ...props }) => { + return ( +
+ + +
+ ); +}; + +export default Input; -- cgit v1.2.3