lucevias 0.1.1 → 0.2.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.
Files changed (70) hide show
  1. package/README.md +0 -4
  2. package/dist/icons/GitBranch.d.ts +8 -0
  3. package/dist/icons/GitCommit.d.ts +8 -0
  4. package/dist/icons/GitDiff.d.ts +8 -0
  5. package/dist/icons/GitFork.d.ts +8 -0
  6. package/dist/icons/GitMerge.d.ts +8 -0
  7. package/dist/icons/GitPullRequest.d.ts +8 -0
  8. package/dist/icons/GithubLogo.d.ts +8 -0
  9. package/dist/icons/GitlabLogo.d.ts +8 -0
  10. package/dist/icons/GitlabLogoSimple.d.ts +8 -0
  11. package/dist/icons/Globe.d.ts +8 -0
  12. package/dist/icons/GlobeHemisphereEast.d.ts +8 -0
  13. package/dist/icons/GlobeHemisphereWest.d.ts +8 -0
  14. package/dist/icons/GlobeSimple.d.ts +8 -0
  15. package/dist/icons/GlobeSimpleX.d.ts +8 -0
  16. package/dist/icons/GlobeStand.d.ts +8 -0
  17. package/dist/icons/GlobeX.d.ts +8 -0
  18. package/dist/icons/Goggles.d.ts +8 -0
  19. package/dist/icons/Golf.d.ts +8 -0
  20. package/dist/icons/GoodreadsLogo.d.ts +8 -0
  21. package/dist/icons/GoogleCardboardLogo.d.ts +8 -0
  22. package/dist/icons/GoogleChromeLogo.d.ts +8 -0
  23. package/dist/icons/GoogleDriveLogo.d.ts +8 -0
  24. package/dist/icons/GoogleLogo.d.ts +8 -0
  25. package/dist/icons/GooglePhotosLogo.d.ts +8 -0
  26. package/dist/icons/GooglePlayLogo.d.ts +8 -0
  27. package/dist/icons/GooglePodcastsLogo.d.ts +8 -0
  28. package/dist/icons/Gps.d.ts +8 -0
  29. package/dist/icons/GpsFix.d.ts +8 -0
  30. package/dist/icons/GpsSlash.d.ts +8 -0
  31. package/dist/icons/Gradient.d.ts +8 -0
  32. package/dist/icons/GraduationCap.d.ts +8 -0
  33. package/dist/icons/Grains.d.ts +8 -0
  34. package/dist/icons/GrainsSlash.d.ts +8 -0
  35. package/dist/icons/Graph.d.ts +8 -0
  36. package/dist/icons/GraphicsCard.d.ts +8 -0
  37. package/dist/icons/GreaterThan.d.ts +8 -0
  38. package/dist/icons/GreaterThanOrEqual.d.ts +8 -0
  39. package/dist/icons/Guitar.d.ts +8 -0
  40. package/dist/icons/Handbag.d.ts +8 -0
  41. package/dist/icons/HandbagSimple.d.ts +8 -0
  42. package/dist/icons/HardDrive.d.ts +8 -0
  43. package/dist/icons/HardDrives.d.ts +8 -0
  44. package/dist/icons/House.d.ts +8 -0
  45. package/dist/icons/HouseLine.d.ts +8 -0
  46. package/dist/icons/HouseSimple.d.ts +8 -0
  47. package/dist/icons/IdentificationBadge.d.ts +8 -0
  48. package/dist/icons/Image.d.ts +8 -0
  49. package/dist/icons/ImageBroken.d.ts +8 -0
  50. package/dist/icons/ImageSquare.d.ts +8 -0
  51. package/dist/icons/Images.d.ts +8 -0
  52. package/dist/icons/ImagesSquare.d.ts +8 -0
  53. package/dist/icons/InstagramLogo.d.ts +8 -0
  54. package/dist/icons/Link.d.ts +8 -0
  55. package/dist/icons/LinkBreak.d.ts +8 -0
  56. package/dist/icons/LinkSimple.d.ts +8 -0
  57. package/dist/icons/LinkSimpleBreak.d.ts +8 -0
  58. package/dist/icons/LinkSimpleHorizontal.d.ts +8 -0
  59. package/dist/icons/LinkSimpleHorizontalBreak.d.ts +8 -0
  60. package/dist/icons/MagnifyingGlass.d.ts +8 -0
  61. package/dist/icons/MagnifyingGlassMinus.d.ts +8 -0
  62. package/dist/icons/MagnifyingGlassPlus.d.ts +8 -0
  63. package/dist/icons/MapPinLine.d.ts +8 -0
  64. package/dist/icons/MapPinPlus.d.ts +8 -0
  65. package/dist/icons/MapPinSimple.d.ts +8 -0
  66. package/dist/icons/MapPinSimpleLine.d.ts +8 -0
  67. package/dist/icons/MapTrifold.d.ts +8 -0
  68. package/dist/index.d.ts +66 -0
  69. package/dist/index.js +3092 -944
  70. package/package.json +1 -1
package/README.md CHANGED
@@ -5,10 +5,6 @@ growing open-source library drawn on a single 24×24 grid, in four weights.
5
5
 
6
6
  **[Browse the catalog →](https://luceviasicons.com)**
7
7
 
8
- > **Not published to npm yet** — the first release is coming.
9
- > Until then the set can be used from the [catalog](https://luceviasicons.com),
10
- > the Figma plugin, or by cloning this repository.
11
-
12
8
  ```bash
13
9
  npm i lucevias
14
10
  ```
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * git-branch
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GitBranch: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * git-commit
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GitCommit: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * git-diff
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GitDiff: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * git-fork
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GitFork: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * git-merge
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GitMerge: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * git-pull-request
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GitPullRequest: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * github-logo
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GithubLogo: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * gitlab-logo
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GitlabLogo: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * gitlab-logo-simple
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GitlabLogoSimple: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * globe
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const Globe: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * globe-hemisphere-east
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GlobeHemisphereEast: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * globe-hemisphere-west
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GlobeHemisphereWest: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * globe-simple
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GlobeSimple: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * globe-simple-x
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GlobeSimpleX: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * globe-stand
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GlobeStand: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * globe-x
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GlobeX: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * goggles
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const Goggles: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * golf
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const Golf: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * goodreads-logo
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GoodreadsLogo: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * google-cardboard-logo
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GoogleCardboardLogo: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * google-chrome-logo
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GoogleChromeLogo: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * google-drive-logo
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GoogleDriveLogo: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * google-logo
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GoogleLogo: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * google-photos-logo
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GooglePhotosLogo: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * google-play-logo
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GooglePlayLogo: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * google-podcasts-logo
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GooglePodcastsLogo: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * gps
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const Gps: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * gps-fix
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GpsFix: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * gps-slash
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GpsSlash: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * gradient
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const Gradient: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * graduation-cap
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GraduationCap: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * grains
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const Grains: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * grains-slash
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GrainsSlash: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * graph
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const Graph: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * graphics-card
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GraphicsCard: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * greater-than
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GreaterThan: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * greater-than-or-equal
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const GreaterThanOrEqual: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * guitar
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const Guitar: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * handbag
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const Handbag: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * handbag-simple
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const HandbagSimple: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * hard-drive
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const HardDrive: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * hard-drives
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const HardDrives: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * house
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const House: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * house-line
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const HouseLine: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * house-simple
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const HouseSimple: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * identification-badge
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const IdentificationBadge: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * image
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const Image: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * image-broken
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const ImageBroken: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * image-square
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const ImageSquare: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * images
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const Images: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * images-square
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const ImagesSquare: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * instagram-logo
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const InstagramLogo: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * link
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const Link: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * link-break
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const LinkBreak: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * link-simple
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const LinkSimple: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * link-simple-break
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const LinkSimpleBreak: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * link-simple-horizontal
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const LinkSimpleHorizontal: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * link-simple-horizontal-break
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const LinkSimpleHorizontalBreak: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * magnifying-glass
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const MagnifyingGlass: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * magnifying-glass-minus
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const MagnifyingGlassMinus: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * magnifying-glass-plus
4
+ *
5
+ * `#__PURE__` is mandatory: without it the bundler treats the forwardRef call
6
+ * as a side effect and pulls every icon into the build instead of the imported one.
7
+ */
8
+ export declare const MagnifyingGlassPlus: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;