@zeushq/design-system
Version:
11 lines (10 loc) • 329 B
TypeScript
/// <reference types="react" />
declare type TitleAndMetaTagsProps = {
url?: string;
pathname?: string;
title?: string;
description?: string;
poster?: string;
};
export declare function TitleAndMetaTags({ url, pathname, title, description, poster, }: TitleAndMetaTagsProps): JSX.Element;
export {};