Skip to content

Commit 2de4462

Browse files
committed
feat(integrations): add Trigger.dev integration
1 parent d2cc13d commit 2de4462

36 files changed

Lines changed: 4571 additions & 0 deletions

apps/docs/components/icons.tsx

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7602,3 +7602,32 @@ export function WizaIcon(props: SVGProps<SVGSVGElement>) {
76027602
</svg>
76037603
)
76047604
}
7605+
7606+
export function TriggerDevIcon(props: SVGProps<SVGSVGElement>) {
7607+
const id = useId()
7608+
const gradientId = `triggerdev_paint0_${id}`
7609+
7610+
return (
7611+
<svg {...props} viewBox='0 0 109 95' fill='none' xmlns='http://www.w3.org/2000/svg'>
7612+
<path
7613+
fillRule='evenodd'
7614+
clipRule='evenodd'
7615+
d='M32.569 38.1914L54.5301 0.158447L108.956 94.4175H0.104248L22.0654 56.3834L37.6003 65.3517L31.1753 76.4795H77.885L54.5301 36.0332L48.1051 47.1609L32.569 38.1914Z'
7616+
fill={`url(#${gradientId})`}
7617+
/>
7618+
<defs>
7619+
<linearGradient
7620+
id={gradientId}
7621+
x1='88.2367'
7622+
y1='94.4175'
7623+
x2='87.2207'
7624+
y2='27.8737'
7625+
gradientUnits='userSpaceOnUse'
7626+
>
7627+
<stop stopColor='#41FF54' />
7628+
<stop offset='1' stopColor='#E7FF52' />
7629+
</linearGradient>
7630+
</defs>
7631+
</svg>
7632+
)
7633+
}

apps/docs/components/ui/icon-mapping.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ import {
197197
TextractIcon,
198198
TinybirdIcon,
199199
TrelloIcon,
200+
TriggerDevIcon,
200201
TwilioIcon,
201202
TypeformIcon,
202203
UpstashIcon,
@@ -438,6 +439,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
438439
textract_v2: TextractIcon,
439440
tinybird: TinybirdIcon,
440441
trello: TrelloIcon,
442+
trigger_dev: TriggerDevIcon,
441443
twilio_sms: TwilioIcon,
442444
twilio_voice: TwilioIcon,
443445
typeform: TypeformIcon,

apps/docs/content/docs/en/integrations/meta.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@
197197
"textract",
198198
"tinybird",
199199
"trello",
200+
"trigger_dev",
200201
"twilio_sms",
201202
"twilio_voice",
202203
"typeform",

apps/docs/content/docs/en/integrations/trigger_dev.mdx

Lines changed: 852 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)