From 04737c176f2da7033a5de5918d1cb30900c6041c Mon Sep 17 00:00:00 2001 From: Pavel Klibani Date: Thu, 26 Sep 2024 14:39:48 +0200 Subject: [PATCH] fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! Feat(web-react): Introduce Footer component #DS-1368 --- packages/web-react/src/components/Footer/Footer.tsx | 4 +++- packages/web-react/src/components/Footer/README.md | 8 ++++---- .../src/components/Footer/demo/FooterDefault.tsx | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/packages/web-react/src/components/Footer/Footer.tsx b/packages/web-react/src/components/Footer/Footer.tsx index 7fd83286ba..ca91f204b1 100644 --- a/packages/web-react/src/components/Footer/Footer.tsx +++ b/packages/web-react/src/components/Footer/Footer.tsx @@ -1,5 +1,6 @@ 'use client'; +import classNames from 'classnames'; import React from 'react'; import { useStyleProps } from '../../hooks'; import { SpiritFooterProps } from '../../types'; @@ -7,9 +8,10 @@ import { SpiritFooterProps } from '../../types'; export const Footer = (props: SpiritFooterProps): JSX.Element => { const { children, ...restProps } = props; const { styleProps, props: otherProps } = useStyleProps(restProps); + const footerClasses = 'bg-cover pt-1100 pb-1000'; return ( -