diff --git a/packages/gamut-illustrations/src/AIBuilder.tsx b/packages/gamut-illustrations/src/AIBuilder.tsx new file mode 100644 index 0000000000..0878d7f0a8 --- /dev/null +++ b/packages/gamut-illustrations/src/AIBuilder.tsx @@ -0,0 +1,274 @@ +import * as React from 'react'; + +import { IllustrationProps } from './types'; + +export const AIBuilder: React.FC = ({ + 'aria-hidden': ariaHidden, + className, + height, + width, +}) => ( + + AI Builder + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +); diff --git a/packages/gamut-illustrations/src/AIBuilderLanding.tsx b/packages/gamut-illustrations/src/AIBuilderLanding.tsx new file mode 100644 index 0000000000..fd57faf2af --- /dev/null +++ b/packages/gamut-illustrations/src/AIBuilderLanding.tsx @@ -0,0 +1,300 @@ +import * as React from 'react'; + +import { IllustrationProps } from './types'; + +export const AIBuilderLanding: React.FC = ({ + 'aria-hidden': ariaHidden, + className, + height, + width, +}) => ( + + AI Builder Landing + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +); diff --git a/packages/gamut-illustrations/src/index.ts b/packages/gamut-illustrations/src/index.ts index 10ef042748..11a2dc7c7a 100644 --- a/packages/gamut-illustrations/src/index.ts +++ b/packages/gamut-illustrations/src/index.ts @@ -1,4 +1,6 @@ export * from './Achievement'; +export * from './AIBuilder'; +export * from './AIBuilderLanding'; export * from './Announcement'; export * from './Bee'; export * from './Bell';