@tinfoilsh/tinfoil-icons 0.0.1 → 1.0.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.
Files changed (58) hide show
  1. package/README.md +81 -29
  2. package/dist/IconBase.d.ts +6 -0
  3. package/dist/IconBase.d.ts.map +1 -0
  4. package/dist/icons/Brain.d.ts +4 -0
  5. package/dist/icons/Brain.d.ts.map +1 -0
  6. package/dist/icons/Cert.d.ts +4 -0
  7. package/dist/icons/Cert.d.ts.map +1 -0
  8. package/dist/icons/Cloud.d.ts +4 -0
  9. package/dist/icons/Cloud.d.ts.map +1 -0
  10. package/dist/icons/CpuCheck.d.ts +4 -0
  11. package/dist/icons/CpuCheck.d.ts.map +1 -0
  12. package/dist/icons/Database.d.ts +4 -0
  13. package/dist/icons/Database.d.ts.map +1 -0
  14. package/dist/icons/Github.d.ts +4 -0
  15. package/dist/icons/Github.d.ts.map +1 -0
  16. package/dist/icons/Gpu.d.ts +4 -0
  17. package/dist/icons/Gpu.d.ts.map +1 -0
  18. package/dist/icons/GpuFan.d.ts +4 -0
  19. package/dist/icons/GpuFan.d.ts.map +1 -0
  20. package/dist/icons/GpuNoFan.d.ts +4 -0
  21. package/dist/icons/GpuNoFan.d.ts.map +1 -0
  22. package/dist/icons/Key.d.ts +4 -0
  23. package/dist/icons/Key.d.ts.map +1 -0
  24. package/dist/icons/Lock.d.ts +4 -0
  25. package/dist/icons/Lock.d.ts.map +1 -0
  26. package/dist/icons/Monitor.d.ts +4 -0
  27. package/dist/icons/Monitor.d.ts.map +1 -0
  28. package/dist/icons/Robot.d.ts +4 -0
  29. package/dist/icons/Robot.d.ts.map +1 -0
  30. package/dist/icons/Server.d.ts +4 -0
  31. package/dist/icons/Server.d.ts.map +1 -0
  32. package/dist/icons/ShieldCheck.d.ts +4 -0
  33. package/dist/icons/ShieldCheck.d.ts.map +1 -0
  34. package/dist/icons/ShieldX.d.ts +4 -0
  35. package/dist/icons/ShieldX.d.ts.map +1 -0
  36. package/dist/icons/Sigstore.d.ts +4 -0
  37. package/dist/icons/Sigstore.d.ts.map +1 -0
  38. package/dist/icons/Stars.d.ts +4 -0
  39. package/dist/icons/Stars.d.ts.map +1 -0
  40. package/dist/icons/Terminal.d.ts +4 -0
  41. package/dist/icons/Terminal.d.ts.map +1 -0
  42. package/dist/icons/Tin.d.ts +4 -0
  43. package/dist/icons/Tin.d.ts.map +1 -0
  44. package/dist/icons/TinSad.d.ts +4 -0
  45. package/dist/icons/TinSad.d.ts.map +1 -0
  46. package/dist/icons/Unlock.d.ts +4 -0
  47. package/dist/icons/Unlock.d.ts.map +1 -0
  48. package/dist/icons/Warning.d.ts +4 -0
  49. package/dist/icons/Warning.d.ts.map +1 -0
  50. package/dist/index.d.ts +25 -0
  51. package/dist/index.d.ts.map +1 -0
  52. package/dist/index.esm.js +498 -0
  53. package/dist/index.esm.js.map +1 -0
  54. package/dist/index.js +522 -0
  55. package/dist/index.js.map +1 -0
  56. package/dist/types.d.ts +8 -0
  57. package/dist/types.d.ts.map +1 -0
  58. package/package.json +32 -6
package/README.md CHANGED
@@ -1,45 +1,97 @@
1
- # @tinfoilsh/tinfoil-icons
1
+ # Tinfoil Icons
2
2
 
3
- ## ⚠️ IMPORTANT NOTICE ⚠️
3
+ Custom icon library for Tinfoil projects, compatible with react-icons.
4
4
 
5
- **This package is created solely for the purpose of setting up OIDC (OpenID Connect) trusted publishing with npm.**
5
+ ## Installation
6
6
 
7
- This is **NOT** a functional package and contains **NO** code or functionality beyond the OIDC setup configuration.
7
+ ```bash
8
+ npm install @tinfoilsh/tinfoil-icons
9
+ ```
8
10
 
9
- ## Purpose
11
+ ## Usage
10
12
 
11
- This package exists to:
12
- 1. Configure OIDC trusted publishing for the package name `@tinfoilsh/tinfoil-icons`
13
- 2. Enable secure, token-less publishing from CI/CD workflows
14
- 3. Establish provenance for packages published under this name
13
+ Import icons the same way you would with react-icons:
15
14
 
16
- ## What is OIDC Trusted Publishing?
15
+ ```tsx
16
+ import { TfBrain, TfTin, TfKey } from '@tinfoilsh/tinfoil-icons';
17
17
 
18
- OIDC trusted publishing allows package maintainers to publish packages directly from their CI/CD workflows without needing to manage npm access tokens. Instead, it uses OpenID Connect to establish trust between the CI/CD provider (like GitHub Actions) and npm.
18
+ function App() {
19
+ return (
20
+ <div>
21
+ <TfBrain size={24} color="#005050" />
22
+ <TfTin size="2em" className="text-teal" />
23
+ <TfKey size={32} />
24
+ </div>
25
+ );
26
+ }
27
+ ```
19
28
 
20
- ## Setup Instructions
29
+ ## Props
21
30
 
22
- To properly configure OIDC trusted publishing for this package:
31
+ All icons accept the same props as react-icons:
23
32
 
24
- 1. Go to [npmjs.com](https://www.npmjs.com/) and navigate to your package settings
25
- 2. Configure the trusted publisher (e.g., GitHub Actions)
26
- 3. Specify the repository and workflow that should be allowed to publish
27
- 4. Use the configured workflow to publish your actual package
33
+ - `size?: string | number` - Icon size (default: '1em')
34
+ - `color?: string` - Icon color (default: 'currentColor')
35
+ - `className?: string` - CSS class name
36
+ - `style?: CSSProperties` - Inline styles
37
+ - All other SVG attributes
28
38
 
29
- ## DO NOT USE THIS PACKAGE
39
+ ## Available Icons
30
40
 
31
- This package is a placeholder for OIDC configuration only. It:
32
- - Contains no executable code
33
- - Provides no functionality
34
- - Should not be installed as a dependency
35
- - Exists only for administrative purposes
41
+ - `TfBrain`
42
+ - `TfCert`
43
+ - `TfCloud`
44
+ - `TfCpuCheck`
45
+ - `TfDatabase`
46
+ - `TfGithub`
47
+ - `TfGpuFan`
48
+ - `TfGpuNoFan`
49
+ - `TfGpu`
50
+ - `TfKey`
51
+ - `TfLock`
52
+ - `TfMonitor`
53
+ - `TfRobot`
54
+ - `TfServer`
55
+ - `TfShieldCheck`
56
+ - `TfShieldX`
57
+ - `TfSigstore`
58
+ - `TfStars`
59
+ - `TfTerminal`
60
+ - `TfTinSad`
61
+ - `TfTin`
62
+ - `TfUnlock`
63
+ - `TfWarning`
36
64
 
37
- ## More Information
65
+ ## Development
38
66
 
39
- For more details about npm's trusted publishing feature, see:
40
- - [npm Trusted Publishing Documentation](https://docs.npmjs.com/generating-provenance-statements)
41
- - [GitHub Actions OIDC Documentation](https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect)
67
+ ### Adding or Updating Icons
42
68
 
43
- ---
69
+ 1. Add or update SVG files in the `svg/` directory
70
+ 2. Regenerate components from SVGs:
71
+ ```bash
72
+ npm run sync # Regenerates .tsx files from .svg files
73
+ npm run build # Build the package
74
+ ```
44
75
 
45
- **Maintained for OIDC setup purposes only**
76
+ The pre-commit hook automatically syncs (regenerates `.tsx` from `.svg`) and rebuilds before every commit.
77
+
78
+ ### Publishing
79
+
80
+ Publishing is automated via GitHub Actions with npm trusted publishing:
81
+
82
+ ```bash
83
+ npm version patch # or minor/major
84
+ git push origin main --tags
85
+ ```
86
+
87
+ The workflow will automatically publish to npm when the version tag is pushed.
88
+
89
+ ### Icon Generation
90
+
91
+ When you modify SVG files in `svg/`, run:
92
+
93
+ ```bash
94
+ npm run sync
95
+ ```
96
+
97
+ This regenerates all `.tsx` icon components from the SVG source files.
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from './types';
3
+ export declare function IconBase({ size, color, title, children, ...props }: IconBaseProps & {
4
+ children: React.ReactNode;
5
+ }): React.JSX.Element;
6
+ //# sourceMappingURL=IconBase.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconBase.d.ts","sourceRoot":"","sources":["../src/IconBase.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAExC,wBAAgB,QAAQ,CAAC,EACvB,IAAY,EACZ,KAAsB,EACtB,KAAK,EACL,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,aAAa,GAAG;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,qBAe/C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfBrain(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Brain.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Brain.d.ts","sourceRoot":"","sources":["../../src/icons/Brain.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,OAAO,CAAC,KAAK,EAAE,aAAa,qBA0B3C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfCert(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Cert.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Cert.d.ts","sourceRoot":"","sources":["../../src/icons/Cert.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,MAAM,CAAC,KAAK,EAAE,aAAa,qBAkB1C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfCloud(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Cloud.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Cloud.d.ts","sourceRoot":"","sources":["../../src/icons/Cloud.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,OAAO,CAAC,KAAK,EAAE,aAAa,qBAiB3C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfCpuCheck(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=CpuCheck.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CpuCheck.d.ts","sourceRoot":"","sources":["../../src/icons/CpuCheck.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,UAAU,CAAC,KAAK,EAAE,aAAa,qBA4B9C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfDatabase(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Database.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Database.d.ts","sourceRoot":"","sources":["../../src/icons/Database.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,UAAU,CAAC,KAAK,EAAE,aAAa,qBA4B9C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfGithub(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Github.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Github.d.ts","sourceRoot":"","sources":["../../src/icons/Github.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,QAAQ,CAAC,KAAK,EAAE,aAAa,qBAe5C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfGpu(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Gpu.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Gpu.d.ts","sourceRoot":"","sources":["../../src/icons/Gpu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,KAAK,CAAC,KAAK,EAAE,aAAa,qBAWzC"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfGpuFan(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=GpuFan.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GpuFan.d.ts","sourceRoot":"","sources":["../../src/icons/GpuFan.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,QAAQ,CAAC,KAAK,EAAE,aAAa,qBAM5C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfGpuNoFan(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=GpuNoFan.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GpuNoFan.d.ts","sourceRoot":"","sources":["../../src/icons/GpuNoFan.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,UAAU,CAAC,KAAK,EAAE,aAAa,qBAU9C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfKey(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Key.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Key.d.ts","sourceRoot":"","sources":["../../src/icons/Key.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,KAAK,CAAC,KAAK,EAAE,aAAa,qBAUzC"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfLock(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Lock.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Lock.d.ts","sourceRoot":"","sources":["../../src/icons/Lock.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,MAAM,CAAC,KAAK,EAAE,aAAa,qBAa1C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfMonitor(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Monitor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Monitor.d.ts","sourceRoot":"","sources":["../../src/icons/Monitor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,SAAS,CAAC,KAAK,EAAE,aAAa,qBAe7C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfRobot(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Robot.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Robot.d.ts","sourceRoot":"","sources":["../../src/icons/Robot.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,OAAO,CAAC,KAAK,EAAE,aAAa,qBAoC3C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfServer(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Server.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Server.d.ts","sourceRoot":"","sources":["../../src/icons/Server.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,QAAQ,CAAC,KAAK,EAAE,aAAa,qBAoB5C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfShieldCheck(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=ShieldCheck.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ShieldCheck.d.ts","sourceRoot":"","sources":["../../src/icons/ShieldCheck.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,aAAa,CAAC,KAAK,EAAE,aAAa,qBA0BjD"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfShieldX(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=ShieldX.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ShieldX.d.ts","sourceRoot":"","sources":["../../src/icons/ShieldX.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,SAAS,CAAC,KAAK,EAAE,aAAa,qBA0B7C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfSigstore(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Sigstore.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Sigstore.d.ts","sourceRoot":"","sources":["../../src/icons/Sigstore.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,UAAU,CAAC,KAAK,EAAE,aAAa,qBAS9C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfStars(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Stars.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Stars.d.ts","sourceRoot":"","sources":["../../src/icons/Stars.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,OAAO,CAAC,KAAK,EAAE,aAAa,qBAyE3C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfTerminal(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Terminal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Terminal.d.ts","sourceRoot":"","sources":["../../src/icons/Terminal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,UAAU,CAAC,KAAK,EAAE,aAAa,qBAc9C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfTin(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Tin.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Tin.d.ts","sourceRoot":"","sources":["../../src/icons/Tin.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,KAAK,CAAC,KAAK,EAAE,aAAa,qBAiCzC"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfTinSad(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=TinSad.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TinSad.d.ts","sourceRoot":"","sources":["../../src/icons/TinSad.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,QAAQ,CAAC,KAAK,EAAE,aAAa,qBAqC5C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfUnlock(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Unlock.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Unlock.d.ts","sourceRoot":"","sources":["../../src/icons/Unlock.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,QAAQ,CAAC,KAAK,EAAE,aAAa,qBAa5C"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconBaseProps } from '../types';
3
+ export declare function TfWarning(props: IconBaseProps): React.JSX.Element;
4
+ //# sourceMappingURL=Warning.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Warning.d.ts","sourceRoot":"","sources":["../../src/icons/Warning.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,wBAAgB,SAAS,CAAC,KAAK,EAAE,aAAa,qBAQ7C"}
@@ -0,0 +1,25 @@
1
+ export type { IconBaseProps, IconType } from './types';
2
+ export { TfBrain } from './icons/Brain';
3
+ export { TfCert } from './icons/Cert';
4
+ export { TfCloud } from './icons/Cloud';
5
+ export { TfCpuCheck } from './icons/CpuCheck';
6
+ export { TfDatabase } from './icons/Database';
7
+ export { TfGithub } from './icons/Github';
8
+ export { TfGpuFan } from './icons/GpuFan';
9
+ export { TfGpuNoFan } from './icons/GpuNoFan';
10
+ export { TfGpu } from './icons/Gpu';
11
+ export { TfKey } from './icons/Key';
12
+ export { TfLock } from './icons/Lock';
13
+ export { TfMonitor } from './icons/Monitor';
14
+ export { TfRobot } from './icons/Robot';
15
+ export { TfServer } from './icons/Server';
16
+ export { TfShieldCheck } from './icons/ShieldCheck';
17
+ export { TfShieldX } from './icons/ShieldX';
18
+ export { TfSigstore } from './icons/Sigstore';
19
+ export { TfStars } from './icons/Stars';
20
+ export { TfTerminal } from './icons/Terminal';
21
+ export { TfTinSad } from './icons/TinSad';
22
+ export { TfTin } from './icons/Tin';
23
+ export { TfUnlock } from './icons/Unlock';
24
+ export { TfWarning } from './icons/Warning';
25
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAEvD,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACxC,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AACtC,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AACtC,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC"}