mirror of
https://github.com/thedevs-network/kutt-extension.git
synced 2026-02-03 05:43:24 +00:00
20 lines
381 B
TypeScript
20 lines
381 B
TypeScript
import React from 'react';
|
|
|
|
const Tick: React.FC = () => (
|
|
<svg
|
|
width={16}
|
|
height={16}
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth={1.5}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
className="check_svg__feather check_svg__feather-check"
|
|
>
|
|
<path d="M20 6L9 17l-5-5" />
|
|
</svg>
|
|
);
|
|
|
|
export default React.memo(Tick);
|