mirror of
https://github.com/thedevs-network/kutt-extension.git
synced 2026-02-03 05:43:24 +00:00
21 lines
417 B
TypeScript
21 lines
417 B
TypeScript
import React from 'react';
|
|
|
|
const Clock: React.FC = () => (
|
|
<svg
|
|
width={16}
|
|
height={16}
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth={1.5}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
className="clock_svg__feather clock_svg__feather-clock"
|
|
>
|
|
<circle cx={12} cy={12} r={10} />
|
|
<path d="M12 6v6l4 2" />
|
|
</svg>
|
|
);
|
|
|
|
export default React.memo(Clock);
|