We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecb21c7 commit 0d98453Copy full SHA for 0d98453
apps/sim/components/icons.tsx
@@ -3836,6 +3836,27 @@ export function WebflowIcon(props: SVGProps<SVGSVGElement>) {
3836
)
3837
}
3838
3839
+export function VariableIcon(props: SVGProps<SVGSVGElement>) {
3840
+ return (
3841
+ <svg
3842
+ {...props}
3843
+ xmlns='http://www.w3.org/2000/svg'
3844
+ width='24'
3845
+ height='24'
3846
+ viewBox='0 0 24 24'
3847
+ fill='none'
3848
+ stroke='currentColor'
3849
+ strokeWidth='2'
3850
+ strokeLinecap='round'
3851
+ strokeLinejoin='round'
3852
+ >
3853
+ <path d='M7 8l-4 4 4 4' />
3854
+ <path d='M17 8l4 4-4 4' />
3855
+ <line x1='14' y1='4' x2='10' y2='20' />
3856
+ </svg>
3857
+ )
3858
+}
3859
+
3860
export function HumanInTheLoopIcon(props: SVGProps<SVGSVGElement>) {
3861
return (
3862
<svg
0 commit comments