From fed7e30d9ff7d28bc7a50a3d1c75348168a11520 Mon Sep 17 00:00:00 2001 From: Juan Gomez Date: Mon, 9 Jun 2025 11:13:09 -0400 Subject: [PATCH] feat: add browser inspect illustration --- .../src/BrowserInspect.tsx | 169 ++++++++++++++++++ packages/gamut-illustrations/src/index.ts | 1 + 2 files changed, 170 insertions(+) create mode 100644 packages/gamut-illustrations/src/BrowserInspect.tsx diff --git a/packages/gamut-illustrations/src/BrowserInspect.tsx b/packages/gamut-illustrations/src/BrowserInspect.tsx new file mode 100644 index 00000000000..80b4ea1ebd7 --- /dev/null +++ b/packages/gamut-illustrations/src/BrowserInspect.tsx @@ -0,0 +1,169 @@ +import * as React from 'react'; + +import { IllustrationProps } from './types'; + +export const BrowserInspect: React.FC = ({ + 'aria-hidden': ariaHidden, + className, + height, + width, +}) => ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +); diff --git a/packages/gamut-illustrations/src/index.ts b/packages/gamut-illustrations/src/index.ts index c13db744ba7..f72c4a89ef8 100644 --- a/packages/gamut-illustrations/src/index.ts +++ b/packages/gamut-illustrations/src/index.ts @@ -8,6 +8,7 @@ export * from './Blueprint'; export * from './BlueprintWhite'; export * from './BookAndNotepad'; export * from './Browser'; +export * from './BrowserInspect'; export * from './BrowserLock'; export * from './BrowserPuzzle'; export * from './ChatBox';