UNPKG

website-session-kit

Version:

A modular and extensible session management toolkit for modern websites.

18 lines (17 loc) 610 B
import React from 'react'; interface Props { logo?: React.ReactNode | string; type?: string; title: string; descriptionBefore?: string; descriptionAfter?: string; extra?: string; bgGradient?: string; textColor?: string; paddingSmX?: string; grafismColor?: string; grafismWidth?: number; lineColor?: string; } declare const HeaderSection: ({ logo, type, title, descriptionBefore, descriptionAfter, extra, bgGradient, textColor, paddingSmX, grafismColor, grafismWidth, lineColor, }: Props) => import("react/jsx-runtime").JSX.Element; export default HeaderSection;