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
+ * tag-chevron
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 TagChevron: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * tag-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 TagSimple: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * tea-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 TeaBag: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * television-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 TelevisionSimple: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * tote-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 ToteSimple: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * trash-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 TrashSimple: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * tray-arrow-down
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 TrayArrowDown: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * tray-arrow-up
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 TrayArrowUp: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * trend-down
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 TrendDown: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * trend-up
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 TrendUp: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * upload
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 Upload: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * upload-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 UploadSimple: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * warning-octagon
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 WarningOctagon: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * waveform
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 Waveform: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import { type IconProps } from '../Icon';
2
+ /**
3
+ * waveform-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 WaveformSlash: import("react").ForwardRefExoticComponent<Omit<IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
package/dist/index.d.ts CHANGED
@@ -710,6 +710,8 @@ export { Handbag } from './icons/Handbag';
710
710
  export { HandbagSimple } from './icons/HandbagSimple';
711
711
  export { HardDrive } from './icons/HardDrive';
712
712
  export { HardDrives } from './icons/HardDrives';
713
+ export { Hash } from './icons/Hash';
714
+ export { HashStraight } from './icons/HashStraight';
713
715
  export { Heart } from './icons/Heart';
714
716
  export { HeartBreak } from './icons/HeartBreak';
715
717
  export { HeartHalf } from './icons/HeartHalf';
@@ -731,7 +733,13 @@ export { InstagramLogo } from './icons/InstagramLogo';
731
733
  export { Intersect } from './icons/Intersect';
732
734
  export { IntersectSquare } from './icons/IntersectSquare';
733
735
  export { IntersectThree } from './icons/IntersectThree';
736
+ export { Intersection } from './icons/Intersection';
734
737
  export { Layout } from './icons/Layout';
738
+ export { Lightbulb } from './icons/Lightbulb';
739
+ export { LightbulbFilament } from './icons/LightbulbFilament';
740
+ export { Lightning } from './icons/Lightning';
741
+ export { LightningA } from './icons/LightningA';
742
+ export { LightningSlash } from './icons/LightningSlash';
735
743
  export { Link } from './icons/Link';
736
744
  export { LinkBreak } from './icons/LinkBreak';
737
745
  export { LinkSimple } from './icons/LinkSimple';
@@ -763,6 +771,17 @@ export { MapPinPlus } from './icons/MapPinPlus';
763
771
  export { MapPinSimple } from './icons/MapPinSimple';
764
772
  export { MapPinSimpleLine } from './icons/MapPinSimpleLine';
765
773
  export { MapTrifold } from './icons/MapTrifold';
774
+ export { Megaphone } from './icons/Megaphone';
775
+ export { MegaphoneSimple } from './icons/MegaphoneSimple';
776
+ export { Microphone } from './icons/Microphone';
777
+ export { MicrophoneSlash } from './icons/MicrophoneSlash';
778
+ export { MinusCircle } from './icons/MinusCircle';
779
+ export { MinusSquare } from './icons/MinusSquare';
780
+ export { Moon } from './icons/Moon';
781
+ export { MoonStars } from './icons/MoonStars';
782
+ export { NoteBlank } from './icons/NoteBlank';
783
+ export { NotePencil } from './icons/NotePencil';
784
+ export { Notebook } from './icons/Notebook';
766
785
  export { NumberCircleEight } from './icons/NumberCircleEight';
767
786
  export { NumberCircleFive } from './icons/NumberCircleFive';
768
787
  export { NumberCircleFour } from './icons/NumberCircleFour';
@@ -794,6 +813,10 @@ export { NumberThree } from './icons/NumberThree';
794
813
  export { NumberTwo } from './icons/NumberTwo';
795
814
  export { NumberZero } from './icons/NumberZero';
796
815
  export { Octagon } from './icons/Octagon';
816
+ export { Package } from './icons/Package';
817
+ export { PaperPlane } from './icons/PaperPlane';
818
+ export { PaperPlaneRight } from './icons/PaperPlaneRight';
819
+ export { PaperPlaneTilt } from './icons/PaperPlaneTilt';
797
820
  export { Parallelogram } from './icons/Parallelogram';
798
821
  export { Pause } from './icons/Pause';
799
822
  export { PauseCircle } from './icons/PauseCircle';
@@ -814,11 +837,20 @@ export { PhonePause } from './icons/PhonePause';
814
837
  export { PhonePlus } from './icons/PhonePlus';
815
838
  export { PhoneTransfer } from './icons/PhoneTransfer';
816
839
  export { PhoneX } from './icons/PhoneX';
840
+ export { PictureInPicture } from './icons/PictureInPicture';
817
841
  export { Placeholder } from './icons/Placeholder';
818
842
  export { Play } from './icons/Play';
819
843
  export { PlayCircle } from './icons/PlayCircle';
820
844
  export { PlayPause } from './icons/PlayPause';
821
845
  export { Playlist } from './icons/Playlist';
846
+ export { PlusCircle } from './icons/PlusCircle';
847
+ export { PlusSquare } from './icons/PlusSquare';
848
+ export { Presentation } from './icons/Presentation';
849
+ export { PresentationChart } from './icons/PresentationChart';
850
+ export { PuzzlePiece } from './icons/PuzzlePiece';
851
+ export { QrCode } from './icons/QrCode';
852
+ export { Question } from './icons/Question';
853
+ export { QuestionMark } from './icons/QuestionMark';
822
854
  export { Rectangle } from './icons/Rectangle';
823
855
  export { RectangleDashed } from './icons/RectangleDashed';
824
856
  export { Recycle } from './icons/Recycle';
@@ -827,6 +859,9 @@ export { RewindCircle } from './icons/RewindCircle';
827
859
  export { Rows } from './icons/Rows';
828
860
  export { RowsPlusBottom } from './icons/RowsPlusBottom';
829
861
  export { RowsPlusTop } from './icons/RowsPlusTop';
862
+ export { Scan } from './icons/Scan';
863
+ export { Screencast } from './icons/Screencast';
864
+ export { SealPercent } from './icons/SealPercent';
830
865
  export { Selection } from './icons/Selection';
831
866
  export { SelectionAll } from './icons/SelectionAll';
832
867
  export { SelectionBackground } from './icons/SelectionBackground';
@@ -842,12 +877,21 @@ export { ShieldPlus } from './icons/ShieldPlus';
842
877
  export { ShieldSlash } from './icons/ShieldSlash';
843
878
  export { ShieldStar } from './icons/ShieldStar';
844
879
  export { ShieldWarning } from './icons/ShieldWarning';
880
+ export { ShoppingBag } from './icons/ShoppingBag';
881
+ export { ShoppingBagOpen } from './icons/ShoppingBagOpen';
882
+ export { ShoppingCart } from './icons/ShoppingCart';
883
+ export { ShoppingCartSimple } from './icons/ShoppingCartSimple';
845
884
  export { Sidebar } from './icons/Sidebar';
846
885
  export { SidebarSimple } from './icons/SidebarSimple';
886
+ export { Sigma } from './icons/Sigma';
887
+ export { SignIn } from './icons/SignIn';
888
+ export { SignOut } from './icons/SignOut';
847
889
  export { SkipBack } from './icons/SkipBack';
848
890
  export { SkipBackCircle } from './icons/SkipBackCircle';
849
891
  export { SkipForward } from './icons/SkipForward';
850
892
  export { SkipForwardCircle } from './icons/SkipForwardCircle';
893
+ export { Sliders } from './icons/Sliders';
894
+ export { SlidersHorizontal } from './icons/SlidersHorizontal';
851
895
  export { Smiley } from './icons/Smiley';
852
896
  export { SmileyAngry } from './icons/SmileyAngry';
853
897
  export { SmileyBlank } from './icons/SmileyBlank';
@@ -858,6 +902,9 @@ export { SmileySad } from './icons/SmileySad';
858
902
  export { SmileySticker } from './icons/SmileySticker';
859
903
  export { SmileyWink } from './icons/SmileyWink';
860
904
  export { SmileyXEyes } from './icons/SmileyXEyes';
905
+ export { Snowflake } from './icons/Snowflake';
906
+ export { SortAscending } from './icons/SortAscending';
907
+ export { SortDescending } from './icons/SortDescending';
861
908
  export { SpeakerHigh } from './icons/SpeakerHigh';
862
909
  export { SpeakerLow } from './icons/SpeakerLow';
863
910
  export { SpeakerNone } from './icons/SpeakerNone';
@@ -868,6 +915,10 @@ export { SpeakerSimpleSlash } from './icons/SpeakerSimpleSlash';
868
915
  export { SpeakerSimpleX } from './icons/SpeakerSimpleX';
869
916
  export { SpeakerSlash } from './icons/SpeakerSlash';
870
917
  export { SpeakerX } from './icons/SpeakerX';
918
+ export { Spinner } from './icons/Spinner';
919
+ export { SpinnerGap } from './icons/SpinnerGap';
920
+ export { SplitHorizontal } from './icons/SplitHorizontal';
921
+ export { SplitVertical } from './icons/SplitVertical';
871
922
  export { Square } from './icons/Square';
872
923
  export { SquareHalf } from './icons/SquareHalf';
873
924
  export { SquareHalfBottom } from './icons/SquareHalfBottom';
@@ -878,8 +929,23 @@ export { Stack } from './icons/Stack';
878
929
  export { StackMinus } from './icons/StackMinus';
879
930
  export { StackPlus } from './icons/StackPlus';
880
931
  export { StackSimple } from './icons/StackSimple';
932
+ export { StarAndCrescent } from './icons/StarAndCrescent';
933
+ export { Stop } from './icons/Stop';
934
+ export { Storefront } from './icons/Storefront';
935
+ export { SubsetOf } from './icons/SubsetOf';
936
+ export { SubsetProperOf } from './icons/SubsetProperOf';
881
937
  export { Subtract } from './icons/Subtract';
882
938
  export { SubtractSquare } from './icons/SubtractSquare';
939
+ export { Sun } from './icons/Sun';
940
+ export { SunDim } from './icons/SunDim';
941
+ export { SupersetOf } from './icons/SupersetOf';
942
+ export { SupersetProperOf } from './icons/SupersetProperOf';
943
+ export { Swap } from './icons/Swap';
944
+ export { Tag } from './icons/Tag';
945
+ export { TagChevron } from './icons/TagChevron';
946
+ export { TagSimple } from './icons/TagSimple';
947
+ export { TeaBag } from './icons/TeaBag';
948
+ export { TelevisionSimple } from './icons/TelevisionSimple';
883
949
  export { TextAUnderline } from './icons/TextAUnderline';
884
950
  export { TextAa } from './icons/TextAa';
885
951
  export { TextAlignCenter } from './icons/TextAlignCenter';
@@ -905,10 +971,18 @@ export { TextT } from './icons/TextT';
905
971
  export { TextTSlash } from './icons/TextTSlash';
906
972
  export { TextUnderline } from './icons/TextUnderline';
907
973
  export { Timer } from './icons/Timer';
974
+ export { ToteSimple } from './icons/ToteSimple';
975
+ export { TrashSimple } from './icons/TrashSimple';
976
+ export { TrayArrowDown } from './icons/TrayArrowDown';
977
+ export { TrayArrowUp } from './icons/TrayArrowUp';
978
+ export { TrendDown } from './icons/TrendDown';
979
+ export { TrendUp } from './icons/TrendUp';
908
980
  export { Triangle } from './icons/Triangle';
909
981
  export { TriangleDashed } from './icons/TriangleDashed';
910
982
  export { Unite } from './icons/Unite';
911
983
  export { UniteSquare } from './icons/UniteSquare';
984
+ export { Upload } from './icons/Upload';
985
+ export { UploadSimple } from './icons/UploadSimple';
912
986
  export { User } from './icons/User';
913
987
  export { UserCheck } from './icons/UserCheck';
914
988
  export { UserCircle } from './icons/UserCircle';
@@ -932,7 +1006,10 @@ export { UsersThree } from './icons/UsersThree';
932
1006
  export { VectorThree } from './icons/VectorThree';
933
1007
  export { VectorTwo } from './icons/VectorTwo';
934
1008
  export { Vignette } from './icons/Vignette';
1009
+ export { WarningOctagon } from './icons/WarningOctagon';
935
1010
  export { Watch } from './icons/Watch';
1011
+ export { Waveform } from './icons/Waveform';
1012
+ export { WaveformSlash } from './icons/WaveformSlash';
936
1013
  export { WifiHigh } from './icons/WifiHigh';
937
1014
  export { WifiLow } from './icons/WifiLow';
938
1015
  export { WifiMedium } from './icons/WifiMedium';