Skip to content

Commit 0d98453

Browse files
author
waleed
committed
fix icons
1 parent ecb21c7 commit 0d98453

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

apps/sim/components/icons.tsx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3836,6 +3836,27 @@ export function WebflowIcon(props: SVGProps<SVGSVGElement>) {
38363836
)
38373837
}
38383838

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+
38393860
export function HumanInTheLoopIcon(props: SVGProps<SVGSVGElement>) {
38403861
return (
38413862
<svg

0 commit comments

Comments
 (0)