@salesforce/design-system-react
Version:
Salesforce Lightning Design System for React
17 lines (15 loc) • 414 B
TypeScript
declare module '@salesforce/design-system-react/components/card/empty' {
import React from 'react';
type Props = {
/**
* Additional call to actions that will render under the heading. Often this is an "Add Item" button.
*/
children?: React.ReactNode;
/**
* Primary text for an Empty Card.
*/
heading?: string;
};
function Component(props: Props): JSX.Element;
export default Component;
}