@szum-tech/design-system
Version:
Szum-Tech design system with tailwindcss support
30 lines (22 loc) • 1.66 kB
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import * as React from 'react';
import * as class_variance_authority_types from 'class-variance-authority/types';
import { VariantProps } from 'class-variance-authority';
type EmptyProps = React.ComponentProps<"div"> & {
border?: boolean | "dashed";
};
declare function Empty({ className, border, ...props }: EmptyProps): react_jsx_runtime.JSX.Element;
type EmptyHeaderProps = React.ComponentProps<"div">;
declare function EmptyHeader({ className, ...props }: EmptyHeaderProps): react_jsx_runtime.JSX.Element;
type EmptyTitleProps = React.ComponentProps<"div">;
declare function EmptyTitle({ className, ...props }: EmptyTitleProps): react_jsx_runtime.JSX.Element;
type EmptyDescriptionProps = React.ComponentProps<"p">;
declare function EmptyDescription({ className, ...props }: EmptyDescriptionProps): react_jsx_runtime.JSX.Element;
type EmptyContentProps = React.ComponentProps<"div">;
declare function EmptyContent({ className, ...props }: EmptyContentProps): react_jsx_runtime.JSX.Element;
type EmptyMediaProps = React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>;
declare const emptyMediaVariants: (props?: ({
variant?: "default" | "icon" | null | undefined;
} & class_variance_authority_types.ClassProp) | undefined) => string;
declare function EmptyMedia({ className, variant, ...props }: EmptyMediaProps): react_jsx_runtime.JSX.Element;
export { Empty, EmptyContent, type EmptyContentProps, EmptyDescription, type EmptyDescriptionProps, EmptyHeader, type EmptyHeaderProps, EmptyMedia, type EmptyMediaProps, type EmptyProps, EmptyTitle, type EmptyTitleProps };