mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-25 04:53:00 -05:00
* Turn off noSvgWithoutTitle rule & see how many errors pop up in linting * Commit with .tsx files containing <svg /> elements now have <title /> tags in them (with English localization) * Fixed tabbing in some files
18 lines
425 B
TypeScript
18 lines
425 B
TypeScript
export function ClockIcon({ className }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className={className}
|
|
viewBox="0 0 20 20"
|
|
fill="currentColor"
|
|
>
|
|
<title>Clock Icon</title>
|
|
<path
|
|
fillRule="evenodd"
|
|
d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z"
|
|
clipRule="evenodd"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|