@solaris-icons/react 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.d.ts +1253 -1253
- package/dist/main.js +1 -1
- package/dist/src/icon.d.ts +1 -1
- package/dist/src/icons/electronic-devices/floppy-disk.d.ts +4 -0
- package/dist/src/icons/electronic-devices/laptop-thin-base.d.ts +4 -0
- package/dist/src/icons/essential/confetti-star-heart.d.ts +4 -0
- package/dist/src/icons/map-&-location/globe.d.ts +4 -0
- package/dist/src/icons/security/square-key.d.ts +4 -0
- package/dist/src/icons/settings-fine-tuning/tuning-three.d.ts +4 -0
- package/dist/src/icons/shopping-ecommerce/bag-cut-out-handle.d.ts +4 -0
- package/dist/src/icons/shopping-ecommerce/bag-droopy-handle.d.ts +4 -0
- package/dist/src/icons/shopping-ecommerce/bag-line.d.ts +4 -0
- package/dist/src/icons/shopping-ecommerce/bag-music-note.d.ts +4 -0
- package/dist/src/icons/shopping-ecommerce/bag-quaver.d.ts +4 -0
- package/dist/src/icons/shopping-ecommerce/bag-shopping.d.ts +4 -0
- package/dist/src/icons/shopping-ecommerce/bag-smile.d.ts +4 -0
- package/package.json +7 -4
package/dist/src/icon.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/** biome-ignore-all lint/a11y/noSvgWithoutTitle: no need */
|
|
2
2
|
import type { IconProps } from "./types";
|
|
3
|
-
export declare function Icon({ ref, size, color, title, children, ...rest }: Omit<IconProps, "variant">): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare function Icon({ ref, size, color, title, children, className, ...rest }: Omit<IconProps, "variant">): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IconProps } from "../../types";
|
|
2
|
+
export declare function FloppyDisk({ variant, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const IconFloppyDisk: typeof FloppyDisk;
|
|
4
|
+
export declare const FloppyDiskIcon: typeof FloppyDisk;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IconProps } from "../../types";
|
|
2
|
+
export declare function LaptopThinBase({ variant, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const IconLaptopThinBase: typeof LaptopThinBase;
|
|
4
|
+
export declare const LaptopThinBaseIcon: typeof LaptopThinBase;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IconProps } from "../../types";
|
|
2
|
+
export declare function ConfettiStarHeart({ variant, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const IconConfettiStarHeart: typeof ConfettiStarHeart;
|
|
4
|
+
export declare const ConfettiStarHeartIcon: typeof ConfettiStarHeart;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IconProps } from "../../types";
|
|
2
|
+
export declare function TuningThree({ variant, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const IconTuningThree: typeof TuningThree;
|
|
4
|
+
export declare const TuningThreeIcon: typeof TuningThree;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IconProps } from "../../types";
|
|
2
|
+
export declare function BagCutOutHandle({ variant, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const IconBagCutOutHandle: typeof BagCutOutHandle;
|
|
4
|
+
export declare const BagCutOutHandleIcon: typeof BagCutOutHandle;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IconProps } from "../../types";
|
|
2
|
+
export declare function BagDroopyHandle({ variant, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const IconBagDroopyHandle: typeof BagDroopyHandle;
|
|
4
|
+
export declare const BagDroopyHandleIcon: typeof BagDroopyHandle;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IconProps } from "../../types";
|
|
2
|
+
export declare function BagMusicNote({ variant, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const IconBagMusicNote: typeof BagMusicNote;
|
|
4
|
+
export declare const BagMusicNoteIcon: typeof BagMusicNote;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IconProps } from "../../types";
|
|
2
|
+
export declare function BagShopping({ variant, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const IconBagShopping: typeof BagShopping;
|
|
4
|
+
export declare const BagShoppingIcon: typeof BagShopping;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solaris-icons/react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "React components for Solaris Icons",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/main.js",
|
|
@@ -18,12 +18,14 @@
|
|
|
18
18
|
],
|
|
19
19
|
"scripts": {
|
|
20
20
|
"gen:icons": "bun run ./scripts/gen-icons.ts",
|
|
21
|
-
"build": "bun build
|
|
21
|
+
"build": "bun run build:assets && bun run build:types",
|
|
22
|
+
"build:assets": "bun build main.ts --outdir dist --target node --minify --external react --external react-dom --external react/jsx-runtime",
|
|
22
23
|
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist",
|
|
24
|
+
"format": "biome format --write",
|
|
23
25
|
"check:type": "tsc --noEmit",
|
|
24
26
|
"check:biome": "biome check",
|
|
25
|
-
"
|
|
26
|
-
"prepublishOnly": "bun run build"
|
|
27
|
+
"bump": "bun run ./scripts/bump-version.ts",
|
|
28
|
+
"prepublishOnly": "bun run build && bun run bump"
|
|
27
29
|
},
|
|
28
30
|
"keywords": [
|
|
29
31
|
"icons",
|
|
@@ -41,6 +43,7 @@
|
|
|
41
43
|
},
|
|
42
44
|
"devDependencies": {
|
|
43
45
|
"@biomejs/biome": "2.3.10",
|
|
46
|
+
"@clack/prompts": "^0.11.0",
|
|
44
47
|
"@types/bun": "latest",
|
|
45
48
|
"@types/react": "^19.2.7",
|
|
46
49
|
"@types/react-dom": "^19.2.3",
|