sendou.ink/app/components/icons/Checkmark.tsx
Kalle 136f6f057c Deleted default svg title
This is just bad UX than a11y. Most of the time icons are used with contextual text but if stand-alone we should provide a better name in the context of the feature rather than a generic one.
2025-07-24 21:27:58 +03:00

30 lines
577 B
TypeScript

export function CheckmarkIcon({
className,
testId,
onClick,
title,
}: {
className?: string;
testId?: string;
onClick?: () => void;
title?: string;
}) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
className={className}
viewBox="0 0 20 20"
fill="currentColor"
data-testid={testId}
onClick={onClick}
>
{title ? <title>{title}</title> : null}
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
);
}