pickup time: intial commit
This commit is contained in:
@@ -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"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user