pickup time: intial commit

This commit is contained in:
2026-01-06 22:41:50 +03:00
parent ad036d1e64
commit ebe9928091
9 changed files with 553 additions and 6 deletions

View File

@@ -1,9 +1,10 @@
interface TimeIconType {
className?: string;
onClick?: () => void;
color?: string;
}
const TimeIcon = ({ className, onClick }: TimeIconType) => {
const TimeIcon = ({ className, onClick, color }: TimeIconType) => {
return (
<svg
width="17"
@@ -17,7 +18,7 @@ const TimeIcon = ({ className, onClick }: TimeIconType) => {
<g clipPath="url(#clip0_2448_7814)">
<path
d="M8.50016 4.08171V8.08171L11.1668 9.41504M15.1668 8.08171C15.1668 11.7636 12.1821 14.7484 8.50016 14.7484C4.81826 14.7484 1.8335 11.7636 1.8335 8.08171C1.8335 4.39981 4.81826 1.41504 8.50016 1.41504C12.1821 1.41504 15.1668 4.39981 15.1668 8.08171Z"
stroke="#333333"
stroke={color || "#333333"}
strokeLinecap="round"
strokeLinejoin="round"
/>