@oceanbase/design
Version:
The Design System of OceanBase
19 lines (18 loc) • 667 B
TypeScript
import React from 'react';
import type { EmptyProps as AntEmptyProps } from 'antd/es/empty';
import type { StepProps } from 'antd/es/steps';
export * from 'antd/es/empty';
export interface EmptyProps extends AntEmptyProps {
title?: React.ReactNode;
steps?: StepProps[];
layout?: 'horizontal' | 'vertical';
}
type CompoundedComponent = React.FC<EmptyProps> & {
PRESENTED_IMAGE_DEFAULT: React.ReactNode;
PRESENTED_IMAGE_SIMPLE: React.ReactNode;
PRESENTED_IMAGE_COLORED: React.ReactNode;
PRESENTED_IMAGE_DATABASE: React.ReactNode;
PRESENTED_IMAGE_GUIDE: React.ReactNode;
};
declare const Empty: CompoundedComponent;
export default Empty;