@openmrs/esm-styleguide
Version:
The styleguide for OpenMRS SPA
12 lines • 524 B
TypeScript
/** @module @category UI */
import React from 'react';
export interface PatientPhotoProps {
patientName: string;
patientUuid: string;
alt?: string;
}
/**
* A component which displays the patient photo https://zeroheight.com/23a080e38/p/6663f3-patient-header. If there is no photo, it will display a generated avatar. The default size is 56px.
*/
export declare function PatientPhoto({ patientUuid, patientName, alt }: PatientPhotoProps): React.JSX.Element;
//# sourceMappingURL=patient-photo.component.d.ts.map