@useloops/design-system
Version:
The official React based Loops design system
14 lines (11 loc) • 431 B
TypeScript
import * as react from 'react';
import { PropsWithChildren } from 'react';
interface LoopItemEmptyProps extends PropsWithChildren {
onClick: () => void;
ctaSpacing?: boolean;
disabledText?: string;
disabled?: boolean;
}
declare const LoopItemEmpty: react.ForwardRefExoticComponent<LoopItemEmptyProps & react.RefAttributes<HTMLDivElement>>;
export { LoopItemEmpty as default };
export type { LoopItemEmptyProps };