Skip to content

Commit

Permalink
fix(dashboard): indication sur l'icône Description
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnaud AMBROSELLI committed Oct 6, 2023
1 parent 23a0566 commit 3d4ced0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion dashboard/src/components/DescriptionIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ import React from 'react';
import openNewWindow from '../assets/icons/description-icon.svg';

const DescriptionIcon = () => (
<div className="tw-ml-1 tw-inline-block tw-h-4 tw-w-4 tw-bg-contain tw-text-gray-300" style={{ backgroundImage: `url(${openNewWindow})` }} />
<div
aria-label="Cette action a une description"
title="Cette action a une description"
className="tw-ml-1 tw-inline-block tw-h-4 tw-w-4 tw-bg-contain tw-text-gray-300"
style={{ backgroundImage: `url(${openNewWindow})` }}
/>
);

export default DescriptionIcon;

0 comments on commit 3d4ced0

Please sign in to comment.