Skip to content

Commit d4f8ac8

Browse files
authored
feat(greenhouse): add greenhouse integration for managing candidates, jobs, and applications (#3363)
1 parent 63fa938 commit d4f8ac8

File tree

21 files changed

+3292
-0
lines changed

21 files changed

+3292
-0
lines changed

apps/docs/components/icons.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4858,6 +4858,17 @@ export function CirclebackIcon(props: SVGProps<SVGSVGElement>) {
48584858
)
48594859
}
48604860

4861+
export function GreenhouseIcon(props: SVGProps<SVGSVGElement>) {
4862+
return (
4863+
<svg {...props} viewBox='0 0 51.4 107.7' xmlns='http://www.w3.org/2000/svg'>
4864+
<path
4865+
d='M44.9,32c0,5.2-2.2,9.8-5.8,13.4c-4,4-9.8,5-9.8,8.4c0,4.6,7.4,3.2,14.5,10.3c4.7,4.7,7.6,10.9,7.6,18.1c0,14.2-11.4,25.5-25.7,25.5S0,96.4,0,82.2C0,75,2.9,68.8,7.6,64.1c7.1-7.1,14.5-5.7,14.5-10.3c0-3.4-5.8-4.4-9.8-8.4c-3.6-3.6-5.8-8.2-5.8-13.6C6.5,21.4,15,13,25.4,13c2,0,3.8,0.3,5.3,0.3c2.7,0,4.1-1.2,4.1-3.1c0-1.1-0.5-2.5-0.5-4c0-3.4,2.9-6.2,6.4-6.2S47,2.9,47,6.4c0,3.7-2.9,5.4-5.1,6.2c-1.8,0.6-3.2,1.4-3.2,3.2C38.7,19.2,44.9,22.5,44.9,32z M42.9,82.2c0-9.9-7.3-17.9-17.2-17.9s-17.2,8-17.2,17.9c0,9.8,7.3,17.9,17.2,17.9S42.9,92,42.9,82.2z M37,31.8c0-6.3-5.1-11.5-11.3-11.5s-11.3,5.2-11.3,11.5s5.1,11.5,11.3,11.5S37,38.1,37,31.8z'
4866+
fill='currentColor'
4867+
/>
4868+
</svg>
4869+
)
4870+
}
4871+
48614872
export function GreptileIcon(props: SVGProps<SVGSVGElement>) {
48624873
return (
48634874
<svg {...props} viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'>

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ import {
6161
GoogleVaultIcon,
6262
GrafanaIcon,
6363
GrainIcon,
64+
GreenhouseIcon,
6465
GreptileIcon,
6566
HexIcon,
6667
HubspotIcon,
@@ -213,6 +214,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
213214
google_vault: GoogleVaultIcon,
214215
grafana: GrafanaIcon,
215216
grain: GrainIcon,
217+
greenhouse: GreenhouseIcon,
216218
greptile: GreptileIcon,
217219
hex: HexIcon,
218220
hubspot: HubspotIcon,

0 commit comments

Comments
 (0)