@kopexa/sight
Version:
Kopexa Sight Design System — React component library for GRC applications
15 lines (12 loc) • 538 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { SlotsToClasses, BlankStateSlots, BlankStateVariantProps } from '@kopexa/theme';
import { ComponentProps } from 'react';
type Props = {
icon?: React.ReactNode;
title?: string;
description?: string;
classNames?: SlotsToClasses<BlankStateSlots>;
};
type BlankstateProps = ComponentProps<"div"> & Props & BlankStateVariantProps;
declare const Blankstate: (props: BlankstateProps) => react_jsx_runtime.JSX.Element;
export { Blankstate, type BlankstateProps };