@atlaskit/forge-react-types 0.5.6 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,12 +3,12 @@
3
3
  *
4
4
  * Extract component prop types from UIKit 2 components - TagProps
5
5
  *
6
- * @codegen <<SignedSource::64a8db0f512b7d60e2e35d1f99a001aa>>
6
+ * @codegen <<SignedSource::267268d3aa69a4b06f02e1cc5edea9ee>>
7
7
  * @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
8
- * @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/tag/__generated__/index.partial.tsx <<SignedSource::f400241a2995fcf2cdb2c1eeaae198f7>>
8
+ * @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/tag/__generated__/index.partial.tsx <<SignedSource::5eafca6673842204effb416681fb9ff4>>
9
9
  */
10
10
  import React from 'react';
11
11
  import { SimpleTag as PlatformSimpleTag } from '@atlaskit/tag';
12
12
  type PlatformSimpleTagProps = React.ComponentProps<typeof PlatformSimpleTag>;
13
- export type SimpleTagProps = Pick<PlatformSimpleTagProps, 'text' | 'appearance' | 'color' | 'elemBefore' | 'testId'>;
13
+ export type SimpleTagProps = Pick<PlatformSimpleTagProps, 'text' | 'appearance' | 'color' | 'elemBefore' | 'href' | 'testId'>;
14
14
  export {};