@theguild/components
Version:
31 lines (28 loc) • 928 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { ReactNode } from 'react';
import { ILink } from '../../types/components.mjs';
import 'next/image';
import 'next/link';
import 'react-player';
type HiveFooterProps = {
className?: string;
logo?: ReactNode;
href?: string;
description?: string;
items?: HiveFooterItems;
/**
* In case this component is used outside of Hive Platform in a design-consistent but less related context,
*/
showSecurityBadges?: boolean;
};
declare function HiveFooter({ className, logo, href, description, items, showSecurityBadges, }: HiveFooterProps): react_jsx_runtime.JSX.Element;
declare namespace HiveFooter {
var DEFAULT_ITEMS: HiveFooterItems;
}
interface HiveFooterItems {
developer?: ILink[];
company?: ILink[];
resources?: ILink[];
links?: ILink[];
}
export { HiveFooter, type HiveFooterItems, type HiveFooterProps };