@leafygreen-ui/icon 11.7.0 → 11.8.0

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.
package/dist/types.d.ts DELETED
@@ -1,15 +0,0 @@
1
- import React from 'react';
2
- export declare namespace SVGR {
3
- interface ComponentProps extends React.SVGProps<SVGSVGElement> {
4
- title?: string | null;
5
- role?: 'presentation' | 'img';
6
- }
7
- type Component = React.ComponentType<ComponentProps>;
8
- }
9
- export declare namespace LGGlyph {
10
- interface ComponentProps extends SVGR.ComponentProps {
11
- size?: number | 'small' | 'default' | 'large' | 'xlarge';
12
- }
13
- type Component = React.ComponentType<ComponentProps>;
14
- }
15
- //# sourceMappingURL=types.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,yBAAiB,IAAI,CAAC;IACpB,UAAiB,cAAe,SAAQ,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC;QACnE,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QACtB,IAAI,CAAC,EAAE,cAAc,GAAG,KAAK,CAAC;KAC/B;IAED,KAAY,SAAS,GAAG,KAAK,CAAC,aAAa,CAAC,cAAc,CAAC,CAAC;CAC7D;AAED,yBAAiB,OAAO,CAAC;IACvB,UAAiB,cAAe,SAAQ,IAAI,CAAC,cAAc;QACzD,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,GAAG,OAAO,GAAG,QAAQ,CAAC;KAC1D;IAED,KAAY,SAAS,GAAG,KAAK,CAAC,aAAa,CAAC,cAAc,CAAC,CAAC;CAC7D"}
package/src/types.ts DELETED
@@ -1,17 +0,0 @@
1
- import React from 'react';
2
- export namespace SVGR {
3
- export interface ComponentProps extends React.SVGProps<SVGSVGElement> {
4
- title?: string | null;
5
- role?: 'presentation' | 'img';
6
- }
7
-
8
- export type Component = React.ComponentType<ComponentProps>;
9
- }
10
-
11
- export namespace LGGlyph {
12
- export interface ComponentProps extends SVGR.ComponentProps {
13
- size?: number | 'small' | 'default' | 'large' | 'xlarge';
14
- }
15
-
16
- export type Component = React.ComponentType<ComponentProps>;
17
- }