diff --git a/packages/gamut-illustrations/src/StackedPagesVariant.tsx b/packages/gamut-illustrations/src/StackedPagesVariant.tsx new file mode 100644 index 0000000000..aa58fcd275 --- /dev/null +++ b/packages/gamut-illustrations/src/StackedPagesVariant.tsx @@ -0,0 +1,244 @@ +import * as React from 'react'; + +import { IllustrationProps } from './types'; + +export const StackedPagesVariant: React.FC = ({ + 'aria-hidden': ariaHidden, + className, + height = '742', + width = '772', +}) => ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +); diff --git a/packages/gamut-illustrations/src/index.ts b/packages/gamut-illustrations/src/index.ts index 0a1f1ddba4..6460801132 100644 --- a/packages/gamut-illustrations/src/index.ts +++ b/packages/gamut-illustrations/src/index.ts @@ -34,7 +34,6 @@ export * from './MobilePhone'; export * from './MoneyBack'; export * from './New'; export * from './NumberBlocks'; -export * from './StackedPages'; export * from './OfficeAnnouncement'; export * from './Onboarding'; export * from './Plant'; @@ -46,6 +45,8 @@ export * from './Purpose'; export * from './Puzzle'; export * from './Python'; export * from './SevenDayTrial'; +export * from './StackedPages'; +export * from './StackedPagesVariant'; export * from './Sun'; export * from './Syllabus'; export * from './TagCelebration';