diff --git a/packages/gamut-illustrations/src/VibeBuilder.tsx b/packages/gamut-illustrations/src/VibeBuilder.tsx new file mode 100644 index 0000000000..352add28bf --- /dev/null +++ b/packages/gamut-illustrations/src/VibeBuilder.tsx @@ -0,0 +1,300 @@ +import * as React from 'react'; + +import { IllustrationProps } from './types'; + +export const VibeBuilder: React.FC = ({ + 'aria-hidden': ariaHidden, + className, + height, + width, +}) => ( + + Vibe Builder + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +); diff --git a/packages/gamut-illustrations/src/VibeBuilderComputer.tsx b/packages/gamut-illustrations/src/VibeBuilderComputer.tsx new file mode 100644 index 0000000000..36179a7096 --- /dev/null +++ b/packages/gamut-illustrations/src/VibeBuilderComputer.tsx @@ -0,0 +1,274 @@ +import * as React from 'react'; + +import { IllustrationProps } from './types'; + +export const VibeBuilderComputer: React.FC = ({ + 'aria-hidden': ariaHidden, + className, + height, + width, +}) => ( + + Vibe Builder Computer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +); diff --git a/packages/gamut-illustrations/src/VibeBuilderPromotion.tsx b/packages/gamut-illustrations/src/VibeBuilderPromotion.tsx new file mode 100644 index 0000000000..f57cf635dc --- /dev/null +++ b/packages/gamut-illustrations/src/VibeBuilderPromotion.tsx @@ -0,0 +1,261 @@ +import * as React from 'react'; + +import { IllustrationProps } from './types'; + +export const VibeBuilderPromotion: React.FC = ({ + 'aria-hidden': ariaHidden, + className, + height, + width, +}) => ( + + Vibe Builder Promotion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +); diff --git a/packages/gamut-illustrations/src/index.ts b/packages/gamut-illustrations/src/index.ts index 1e37d49a86..0953db1a9b 100644 --- a/packages/gamut-illustrations/src/index.ts +++ b/packages/gamut-illustrations/src/index.ts @@ -66,4 +66,7 @@ export * from './Tag50PercentOff'; export * from './Target'; export * from './TinyBlocks'; export * from './types'; +export * from './VibeBuilder'; +export * from './VibeBuilderComputer'; +export * from './VibeBuilderPromotion'; export * from './Warning';