@salesforce/design-system-react
Version:
Salesforce Lightning Design System for React
22 lines (20 loc) • 642 B
TypeScript
declare module '@salesforce/design-system-react/components/split-view/private/list-item-content' {
import React from 'react';
type Props = {
/**
* **Item to be displayed**
* * `label`: The main label displayed on the top left.
* * `topRightText`: The text displayed on the top right.
* * `bottomLeftText`: The text displayed on the bottom left.
* * `bottomRightText`: The text displayed on the bottom right.
*/
item?: Partial<{
label?: string;
topRightText?: string;
bottomLeftText?: string;
bottomRightText?: string;
}>;
};
function Component(props: Props): JSX.Element;
export default Component;
}