@hhgtech/hhg-components
Version:
Hello Health Group common components
9 lines (8 loc) • 326 B
TypeScript
import React, { SVGProps } from 'react';
export type DoctorExpertiseItemProps = {
doctorInfo: string | string[];
Icon: React.ComponentType<SVGProps<SVGSVGElement>>;
title: string;
};
declare const DoctorExpertiseItem: (props: DoctorExpertiseItemProps) => React.JSX.Element;
export { DoctorExpertiseItem };