ivt
Version:
Ivt Components Library
39 lines (33 loc) • 1.15 kB
TypeScript
import React__default from 'react';
import { BadgeProps } from '../badge/index.js';
import 'react/jsx-runtime';
import 'class-variance-authority/types';
import 'class-variance-authority';
interface TextWrapProps extends React__default.HTMLAttributes<HTMLDivElement> {
children: React__default.ReactNode;
}
declare const TextWrap: React__default.FC<TextWrapProps>;
interface HeaderProps {
title: string;
description: string;
className?: string;
}
declare const Header: React__default.FC<HeaderProps>;
declare function normalizeDate(date: Date): string;
interface CalendarPopoverProps {
date: Date | undefined;
setDate: (newDate: Date | undefined) => void;
isLoading?: boolean;
isLoadingTable?: boolean;
disabledDates?: Set<string>;
}
declare const CalendarPopover: React__default.FC<CalendarPopoverProps>;
interface HoverBadgeProps {
title: string;
description?: string;
variant: BadgeProps["variant"];
className?: string;
showTitleInDescription?: boolean;
}
declare const HoverBadge: React__default.FC<HoverBadgeProps>;
export { CalendarPopover, Header, HoverBadge, TextWrap, normalizeDate };