@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 432 B
TypeScript
import React from 'react';
import { TypeProps as LogoType } from "../../../atoms/logo";
import { FooterInfoMarryBaby } from "../../../../interfaces/types";
export type Props = {
className?: string;
logoType?: LogoType;
footerMenu?: FooterInfoMarryBaby;
background?: string;
};
declare const MarryBabyFooter: ({ logoType, footerMenu, background, }: Props) => React.JSX.Element;
export { MarryBabyFooter };