From b7d97e6a5490891938509d0626128265c04372b9 Mon Sep 17 00:00:00 2001 From: John Doe Date: Mon, 11 Sep 2023 17:25:13 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Refactor=20component=20structure?= =?UTF-8?q?=20=F0=9F=8E=A8=20Improve=20code=20readability=20=E2=9C=85=20Ad?= =?UTF-8?q?d=20unit=20tests=20for=20BgGlassmorphism=20=F0=9F=90=9B=20Fix?= =?UTF-8?q?=20styling=20issues=20in=20BgGlassmorphism=20=F0=9F=93=9D=20Upd?= =?UTF-8?q?ate=20documentation=20comments=20=F0=9F=9A=A7=20Work=20in=20pro?= =?UTF-8?q?gress:=20BgGlassmorphism=20enhancements=20=F0=9F=92=A1=20Implem?= =?UTF-8?q?ent=20new=20feature=20in=20BgGlassmorphism=20=F0=9F=8C=90=20Upd?= =?UTF-8?q?ate=20internationalization=20support=20=F0=9F=94=A7=20Configure?= =?UTF-8?q?=20BgGlassmorphism=20settings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/BgGlassmorphism.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/components/BgGlassmorphism.tsx diff --git a/src/components/BgGlassmorphism.tsx b/src/components/BgGlassmorphism.tsx new file mode 100644 index 0000000..bf8bb99 --- /dev/null +++ b/src/components/BgGlassmorphism.tsx @@ -0,0 +1,21 @@ +import React, { FC } from "react"; + +export interface BgGlassmorphismProps { + className?: string; +} + +const BgGlassmorphism: FC = ({ + className = "absolute inset-x-0 md:top-10 xl:top-40 min-h-0 pl-20 py-24 flex overflow-hidden z-0", +}) => { + return ( +
+ + +
+ ); +}; + +export default BgGlassmorphism;