Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replaced export button Icon with relevant Export Icon #6451

Merged
merged 1 commit into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Components/Common/Export.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const ExportMenu = ({
<DropdownMenu
disabled={isExporting || disabled}
title={isExporting ? "Exporting..." : label}
icon={<CareIcon className="care-l-import" />}
icon={<CareIcon className="care-l-export" />}
className="tooltip border-primary-500 bg-white text-primary-500 hover:bg-primary-100 enabled:border"
>
{exportItems.map((item) => (
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Patient/ManagePatients.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ export const PatientManager = () => {
}}
className="mr-5 w-full lg:w-fit"
>
<CareIcon className="care-l-import" />
<CareIcon className="care-l-export" />
<span className="lg:my-[3px]">Export</span>
</ButtonV2>
) : (
Expand Down
Loading