ivt
Version:
Ivt Components Library
40 lines (33 loc) • 1.11 kB
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import React__default from 'react';
declare const ChildContainer: ({ children, className, }: {
children: React__default.ReactNode;
className?: string;
}) => react_jsx_runtime.JSX.Element;
declare const Container: ({ children, className, }: {
children: React__default.ReactNode;
className?: string;
}) => react_jsx_runtime.JSX.Element;
interface ListItemProps {
title: string;
value: any;
linkHref?: string;
isBoolean?: boolean;
className?: string;
hasTooltip?: boolean;
tooltipContent?: React__default.ReactNode;
}
declare const ListItem: React__default.FC<ListItemProps>;
interface SectionInfoProps {
title?: string;
description?: string;
className?: string;
extraDescription?: React__default.ReactNode;
}
declare const SectionInfo: React__default.FC<SectionInfoProps>;
interface ShowNotFoundProps {
title: string;
description: string;
}
declare const ShowNotFound: React__default.FC<ShowNotFoundProps>;
export { ChildContainer, Container, ListItem, SectionInfo, ShowNotFound };