From f5ef787ee0ed2953ab85c2f2999031986f059ef2 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 14 Mar 2021 00:13:53 +0300 Subject: feat: add Header and Button --- src/components/Button.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/components/Button.tsx (limited to 'src/components/Button.tsx') diff --git a/src/components/Button.tsx b/src/components/Button.tsx new file mode 100644 index 0000000..55ceda6 --- /dev/null +++ b/src/components/Button.tsx @@ -0,0 +1,23 @@ +import React from 'react'; + +interface Props { + variant?: 'contained' | 'outlined' + children: string; +} + + +const styles = { + contained: "bg-black text-white", + outlined: "border-2 border-black" +}; + +const Button: React.FC = ({ children, variant = 'contained' }) => { + + return ( + + ); +}; + +export default Button; -- cgit v1.2.3