Sha256: 33aba679a18e9470bb17a6bc6cccae1626565b0b9aa0102ee2cc3cdbda8baf79
Contents?: true
Size: 449 Bytes
Versions: 2
Compression:
Stored size: 449 Bytes
Contents
declare type ContactItem = { contactType: string; contactValue: string; contactDetail: string; }; declare type PersonContactProps = { aria?: { [key: string]: string; }; className?: string | string[]; data?: object; firstName: string; id?: string; lastName: string; contacts?: ContactItem[]; }; declare const PersonContact: (props: PersonContactProps) => JSX.Element; export default PersonContact;
Version data entries
2 entries across 2 versions & 1 rubygems