@equinor/fusion-react-person
Version:
React component for displaying an person information
9 lines • 750 B
TypeScript
import type { PropsWithChildren } from 'react';
import { type ComponentProps } from '@equinor/fusion-react-utils';
import HTMLPersonCellCustomElement, { type TableCellData as PersonCellData } from '@equinor/fusion-wc-person/table-cell';
type ElementProps = PropsWithChildren<Partial<Pick<HTMLPersonCellCustomElement, 'azureId' | 'upn' | 'dataSource' | 'size' | 'heading' | 'subHeading' | 'showAvatar'>>>;
export type PersonCellProps = ComponentProps<HTMLPersonCellCustomElement, ElementProps>;
export declare const PersonCell: import("@equinor/fusion-react-utils").WebComponent<HTMLPersonCellCustomElement, ElementProps>;
export type { PersonCellData, HTMLPersonCellCustomElement };
export default PersonCell;
//# sourceMappingURL=PersonCell.d.ts.map