diff --git a/src/design-system/flow-card/flow-card-profile.component.tsx b/src/design-system/flow-card/flow-card-profile.component.tsx index af8f922..d27fdba 100644 --- a/src/design-system/flow-card/flow-card-profile.component.tsx +++ b/src/design-system/flow-card/flow-card-profile.component.tsx @@ -14,6 +14,7 @@ interface Props { icon?: ReactNode; name: string; description?: string; + testId?: string; } export const Profile = ({ @@ -21,6 +22,7 @@ export const Profile = ({ icon, name, description, + testId, }: Readonly): JSX.Element => { const renderProfileImage = () => { if (typeof icon !== 'undefined') { @@ -34,18 +36,33 @@ export const Profile = ({
- + {renderProfileImage()} - + {name} {description === undefined ? undefined : ( - + {description}