Add action block (#1243)
This commit is contained in:
26
skyvern-frontend/src/components/icons/ClickIcon.tsx
Normal file
26
skyvern-frontend/src/components/icons/ClickIcon.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
type Props = {
|
||||
className?: string;
|
||||
};
|
||||
|
||||
function ClickIcon({ className }: Props) {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
className={className}
|
||||
>
|
||||
<path
|
||||
d="M9 3.5V2M5.06066 5.06066L4 4M5.06066 13L4 14.0607M13 5.06066L14.0607 4M3.5 9H2M8.5 8.5L12.6111 21.2778L15.5 18.3889L19.1111 22L22 19.1111L18.3889 15.5L21.2778 12.6111L8.5 8.5Z"
|
||||
stroke="#F8FAFC"
|
||||
strokeWidth="1.6"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
export { ClickIcon };
|
||||
Reference in New Issue
Block a user