lucevias 0.2.0 → 0.3.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 (80) hide show
  1. package/dist/icons/Hash.d.ts +8 -0
  2. package/dist/icons/HashStraight.d.ts +8 -0
  3. package/dist/icons/Intersection.d.ts +8 -0
  4. package/dist/icons/Lightbulb.d.ts +8 -0
  5. package/dist/icons/LightbulbFilament.d.ts +8 -0
  6. package/dist/icons/Lightning.d.ts +8 -0
  7. package/dist/icons/LightningA.d.ts +8 -0
  8. package/dist/icons/LightningSlash.d.ts +8 -0
  9. package/dist/icons/Megaphone.d.ts +8 -0
  10. package/dist/icons/MegaphoneSimple.d.ts +8 -0
  11. package/dist/icons/Microphone.d.ts +8 -0
  12. package/dist/icons/MicrophoneSlash.d.ts +8 -0
  13. package/dist/icons/MinusCircle.d.ts +8 -0
  14. package/dist/icons/MinusSquare.d.ts +8 -0
  15. package/dist/icons/Moon.d.ts +8 -0
  16. package/dist/icons/MoonStars.d.ts +8 -0
  17. package/dist/icons/NoteBlank.d.ts +8 -0
  18. package/dist/icons/NotePencil.d.ts +8 -0
  19. package/dist/icons/Notebook.d.ts +8 -0
  20. package/dist/icons/Package.d.ts +8 -0
  21. package/dist/icons/PaperPlane.d.ts +8 -0
  22. package/dist/icons/PaperPlaneRight.d.ts +8 -0
  23. package/dist/icons/PaperPlaneTilt.d.ts +8 -0
  24. package/dist/icons/PictureInPicture.d.ts +8 -0
  25. package/dist/icons/PlusCircle.d.ts +8 -0
  26. package/dist/icons/PlusSquare.d.ts +8 -0
  27. package/dist/icons/Presentation.d.ts +8 -0
  28. package/dist/icons/PresentationChart.d.ts +8 -0
  29. package/dist/icons/PuzzlePiece.d.ts +8 -0
  30. package/dist/icons/QrCode.d.ts +8 -0
  31. package/dist/icons/Question.d.ts +8 -0
  32. package/dist/icons/QuestionMark.d.ts +8 -0
  33. package/dist/icons/Scan.d.ts +8 -0
  34. package/dist/icons/Screencast.d.ts +8 -0
  35. package/dist/icons/SealPercent.d.ts +8 -0
  36. package/dist/icons/ShoppingBag.d.ts +8 -0
  37. package/dist/icons/ShoppingBagOpen.d.ts +8 -0
  38. package/dist/icons/ShoppingCart.d.ts +8 -0
  39. package/dist/icons/ShoppingCartSimple.d.ts +8 -0
  40. package/dist/icons/Sigma.d.ts +8 -0
  41. package/dist/icons/SignIn.d.ts +8 -0
  42. package/dist/icons/SignOut.d.ts +8 -0
  43. package/dist/icons/Sliders.d.ts +8 -0
  44. package/dist/icons/SlidersHorizontal.d.ts +8 -0
  45. package/dist/icons/Snowflake.d.ts +8 -0
  46. package/dist/icons/SortAscending.d.ts +8 -0
  47. package/dist/icons/SortDescending.d.ts +8 -0
  48. package/dist/icons/Spinner.d.ts +8 -0
  49. package/dist/icons/SpinnerGap.d.ts +8 -0
  50. package/dist/icons/SplitHorizontal.d.ts +8 -0
  51. package/dist/icons/SplitVertical.d.ts +8 -0
  52. package/dist/icons/StarAndCrescent.d.ts +8 -0
  53. package/dist/icons/Stop.d.ts +8 -0
  54. package/dist/icons/Storefront.d.ts +8 -0
  55. package/dist/icons/SubsetOf.d.ts +8 -0
  56. package/dist/icons/SubsetProperOf.d.ts +8 -0
  57. package/dist/icons/Sun.d.ts +8 -0
  58. package/dist/icons/SunDim.d.ts +8 -0
  59. package/dist/icons/SupersetOf.d.ts +8 -0
  60. package/dist/icons/SupersetProperOf.d.ts +8 -0
  61. package/dist/icons/Swap.d.ts +8 -0
  62. package/dist/icons/Tag.d.ts +8 -0
  63. package/dist/icons/TagChevron.d.ts +8 -0
  64. package/dist/icons/TagSimple.d.ts +8 -0
  65. package/dist/icons/TeaBag.d.ts +8 -0
  66. package/dist/icons/TelevisionSimple.d.ts +8 -0
  67. package/dist/icons/ToteSimple.d.ts +8 -0
  68. package/dist/icons/TrashSimple.d.ts +8 -0
  69. package/dist/icons/TrayArrowDown.d.ts +8 -0
  70. package/dist/icons/TrayArrowUp.d.ts +8 -0
  71. package/dist/icons/TrendDown.d.ts +8 -0
  72. package/dist/icons/TrendUp.d.ts +8 -0
  73. package/dist/icons/Upload.d.ts +8 -0
  74. package/dist/icons/UploadSimple.d.ts +8 -0
  75. package/dist/icons/WarningOctagon.d.ts +8 -0
  76. package/dist/icons/Waveform.d.ts +8 -0
  77. package/dist/icons/WaveformSlash.d.ts +8 -0
  78. package/dist/index.d.ts +77 -0
  79. package/dist/index.js +3111 -1263
  80. package/package.json +1 -1
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * hash
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 Hash: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * hash-straight
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 HashStraight: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * intersection
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 Intersection: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * lightbulb
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 Lightbulb: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * lightbulb-filament
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 LightbulbFilament: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * lightning
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 Lightning: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * lightning-a
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 LightningA: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * lightning-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 LightningSlash: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * megaphone
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 Megaphone: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * megaphone-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 MegaphoneSimple: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * microphone
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 Microphone: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * microphone-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 MicrophoneSlash: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * minus-circle
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 MinusCircle: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * minus-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 MinusSquare: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * moon
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 Moon: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * moon-stars
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 MoonStars: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * note-blank
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 NoteBlank: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * note-pencil
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 NotePencil: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * notebook
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 Notebook: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * package
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 Package: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * paper-plane
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 PaperPlane: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * paper-plane-right
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 PaperPlaneRight: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * paper-plane-tilt
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 PaperPlaneTilt: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * picture-in-picture
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 PictureInPicture: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * plus-circle
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 PlusCircle: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * plus-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 PlusSquare: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * presentation
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 Presentation: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * presentation-chart
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 PresentationChart: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * puzzle-piece
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 PuzzlePiece: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * qr-code
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 QrCode: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * question
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 Question: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * question-mark
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 QuestionMark: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * scan
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 Scan: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * screencast
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 Screencast: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * seal-percent
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 SealPercent: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * shopping-bag
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 ShoppingBag: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * shopping-bag-open
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 ShoppingBagOpen: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * shopping-cart
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 ShoppingCart: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * shopping-cart-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 ShoppingCartSimple: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * sigma
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 Sigma: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * sign-in
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 SignIn: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * sign-out
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 SignOut: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * sliders
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 Sliders: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * sliders-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 SlidersHorizontal: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * snowflake
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 Snowflake: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * sort-ascending
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 SortAscending: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * sort-descending
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 SortDescending: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * spinner
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 Spinner: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * spinner-gap
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 SpinnerGap: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * split-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 SplitHorizontal: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * split-vertical
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 SplitVertical: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * star-and-crescent
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 StarAndCrescent: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * stop
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 Stop: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * storefront
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 Storefront: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * subset-of
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 SubsetOf: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * subset-proper-of
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 SubsetProperOf: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * sun
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 Sun: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * sun-dim
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 SunDim: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * superset-of
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 SupersetOf: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * superset-proper-of
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 SupersetProperOf: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * swap
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 Swap: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * tag
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 Tag: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;