diff --git a/packages/gamut-illustrations/src/TagCelebration.tsx b/packages/gamut-illustrations/src/TagCelebration.tsx new file mode 100644 index 0000000000..80f1cc5d9b --- /dev/null +++ b/packages/gamut-illustrations/src/TagCelebration.tsx @@ -0,0 +1,194 @@ +import * as React from 'react'; + +import { IllustrationProps } from './types'; + +export const TagCelebration: 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 2b292270cb..0a1f1ddba4 100644 --- a/packages/gamut-illustrations/src/index.ts +++ b/packages/gamut-illustrations/src/index.ts @@ -48,6 +48,7 @@ export * from './Python'; export * from './SevenDayTrial'; export * from './Sun'; export * from './Syllabus'; +export * from './TagCelebration'; export * from './Target'; export * from './TinyBlocks'; export * from './types';