hh-ui-components
Version:
12 lines • 911 B
JavaScript
import React from "react";
import { Button } from "../Button/Button";
var FooterAbout = function (_a) {
var className = _a.className, title = _a.title, description = _a.description, btnLabel = _a.btnLabel, onClick = _a.onClick;
return (React.createElement("div", { className: "".concat(className, " mr-auto lg:max-w-[29.653vw] 2xl:max-w-[29.653vw]") },
React.createElement("div", { className: "text-[0.9rem] font-normal capitalize leading-[140%] text-[#3C3C3C] 2xl:text-[0.833vw] mb-20 lg:mb-20 2xl:mb-20-2xl" }, title),
React.createElement("div", { className: "text-[0.875rem] font-normal not-italic leading-[140%] text-graphite md:text-[1.823vw] lg:text-[1rem] 2xl:text-[1.111vw]" },
description,
React.createElement(Button, { variants: "tertiary", label: btnLabel, onClick: onClick }))));
};
export default FooterAbout;
//# sourceMappingURL=FooterAbout.js.map