diff --git a/packages/gamut-illustrations/src/BrowserInspect.tsx b/packages/gamut-illustrations/src/BrowserInspect.tsx new file mode 100644 index 0000000000..80b4ea1ebd --- /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 c13db744ba..f72c4a89ef 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';