From 046c9af4b34cf572ae834cf6745990828fddcfa2 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Thu, 18 Mar 2021 03:54:07 +0300 Subject: feat: improve components style --- src/components/Paper.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/components/Paper.tsx') diff --git a/src/components/Paper.tsx b/src/components/Paper.tsx index 2d64261..5e2604f 100644 --- a/src/components/Paper.tsx +++ b/src/components/Paper.tsx @@ -1,17 +1,17 @@ import React from 'react'; interface Props { - variant?: 'elevation' | 'outlined' + variant?: 'elevation' | 'outlined'; } const style = { - elevation: 'shadow', - outlined: 'border-black border-2', + elevation: '', + outlined: 'bg-gray-50 border border-gray-300', }; const Paper: React.FC = ({ variant = 'elevation', children }) => { return ( -
+
{children}
); -- cgit v1.2.3