website-session-kit
Version:
A modular and extensible session management toolkit for modern websites.
8 lines (7 loc) • 838 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import LpContentContainer from '../../containers/LpContentContainer';
import Line from '../../ui/Line';
const TextHighLightSection = ({ text, textColor = 'text-[#daebfd]', bgColor = 'bg-gradient-to-r from-[#00172f] to-black', className = '', lineColor = '#e16a3d', grafismColor = '#e16a3d', lpHeight, lpClassName, }) => {
return (_jsxs(LpContentContainer, { grafismColor: grafismColor, className: `min-h-[200px] sm:min-h-[300px] ${className}`, containerBgColor: bgColor, containerHeight: lpHeight, containerClassName: lpClassName, children: [_jsx(Line, { width: "w-[10%]", height: "h-[1px]", color: lineColor }), _jsx("p", { className: `font-light text-center text-2xl sm:text-3xl uppercase ${textColor}`, children: text })] }));
};
export default TextHighLightSection;