vexicons 1.0.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.
- package/README.md +79 -0
- package/dist/index.cjs +3 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +96 -0
- package/dist/index.d.ts +96 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/package.json +53 -0
package/README.md
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# vexICONS
|
|
2
|
+
|
|
3
|
+
Custom React icon library with 40+ hand-crafted icons. All icons are designed on a 24x24 grid with 2px stroke width.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install vexicons
|
|
9
|
+
# or
|
|
10
|
+
pnpm add vexicons
|
|
11
|
+
# or
|
|
12
|
+
yarn add vexicons
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```tsx
|
|
18
|
+
import { VexHome, VexSearch, VexUser } from 'vexicons'
|
|
19
|
+
|
|
20
|
+
function App() {
|
|
21
|
+
return (
|
|
22
|
+
<div>
|
|
23
|
+
<VexHome />
|
|
24
|
+
<VexSearch size={32} />
|
|
25
|
+
<VexUser size={20} stroke="red" />
|
|
26
|
+
</div>
|
|
27
|
+
)
|
|
28
|
+
}
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Props
|
|
32
|
+
|
|
33
|
+
All icons accept standard SVG props plus:
|
|
34
|
+
|
|
35
|
+
| Prop | Type | Default | Description |
|
|
36
|
+
|------|------|---------|-------------|
|
|
37
|
+
| `size` | `number \| string` | `24` | Width and height of the icon |
|
|
38
|
+
| `stroke` | `string` | `currentColor` | Stroke color |
|
|
39
|
+
| `strokeWidth` | `number` | `2` | Stroke width |
|
|
40
|
+
| `className` | `string` | - | CSS class name |
|
|
41
|
+
|
|
42
|
+
## Available Icons
|
|
43
|
+
|
|
44
|
+
- `VexArrowDown`, `VexArrowLeft`, `VexArrowRight`, `VexArrowUp`
|
|
45
|
+
- `VexBattery`, `VexBell`, `VexBookmark`
|
|
46
|
+
- `VexCalendar`, `VexCheck`, `VexClock`, `VexClose`, `VexCloud`, `VexCopy`
|
|
47
|
+
- `VexDownload`
|
|
48
|
+
- `VexEdit`, `VexEye`, `VexEyeOff`
|
|
49
|
+
- `VexFile`, `VexFilter`, `VexFolder`
|
|
50
|
+
- `VexGear`
|
|
51
|
+
- `VexHeart`, `VexHome`
|
|
52
|
+
- `VexImage`
|
|
53
|
+
- `VexLink`, `VexLock`
|
|
54
|
+
- `VexMail`, `VexMenu`, `VexMinus`, `VexMoon`
|
|
55
|
+
- `VexPlus`
|
|
56
|
+
- `VexRefresh`
|
|
57
|
+
- `VexSearch`, `VexShare`, `VexSort`, `VexStar`, `VexSun`
|
|
58
|
+
- `VexTrash`
|
|
59
|
+
- `VexUpload`, `VexUser`
|
|
60
|
+
- `VexWifi`
|
|
61
|
+
|
|
62
|
+
## Create Custom Icons
|
|
63
|
+
|
|
64
|
+
You can also use the `createIcon` helper to create your own icons:
|
|
65
|
+
|
|
66
|
+
```tsx
|
|
67
|
+
import { createIcon } from 'vexicons'
|
|
68
|
+
|
|
69
|
+
const MyCustomIcon = createIcon(
|
|
70
|
+
<>
|
|
71
|
+
<circle cx="12" cy="12" r="10" />
|
|
72
|
+
<path d="M12 6v6l4 2" />
|
|
73
|
+
</>
|
|
74
|
+
)
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
## License
|
|
78
|
+
|
|
79
|
+
MIT © vextm
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
'use strict';var jsxRuntime=require('react/jsx-runtime');var U={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"},o=G=>({size:n=24,...R})=>jsxRuntime.jsx("svg",{...U,width:n,height:n,...R,children:G});var T=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M12 5v14"}),jsxRuntime.jsx("path",{d:"M19 12l-7 7-7-7"})]}));var O=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M19 12H5"}),jsxRuntime.jsx("path",{d:"M11 19l-7-7 7-7"})]}));var J=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M5 12h14"}),jsxRuntime.jsx("path",{d:"M13 5l7 7-7 7"})]}));var X=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M12 19V5"}),jsxRuntime.jsx("path",{d:"M5 12l7-7 7 7"})]}));var _=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("rect",{x:"2",y:"7",width:"18",height:"10",rx:"2"}),jsxRuntime.jsx("path",{d:"M22 11v2"}),jsxRuntime.jsx("path",{d:"M6 11v2"}),jsxRuntime.jsx("path",{d:"M10 11v2"}),jsxRuntime.jsx("path",{d:"M14 11v2"})]}));var oo=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9"}),jsxRuntime.jsx("path",{d:"M13.73 21a2 2 0 01-3.46 0"})]}));var ro=o(jsxRuntime.jsx("path",{d:"M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z"}));var ao=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}),jsxRuntime.jsx("path",{d:"M16 2v4M8 2v4M3 10h18"})]}));var ho=o(jsxRuntime.jsx("path",{d:"M4 12l5 5L20 6"}));var lo=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("circle",{cx:"12",cy:"12",r:"10"}),jsxRuntime.jsx("path",{d:"M12 6v6l4 2"})]}));var mo=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M18 6L6 18"}),jsxRuntime.jsx("path",{d:"M6 6l12 12"})]}));var Io=o(jsxRuntime.jsx("path",{d:"M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"}));var vo=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("rect",{x:"9",y:"9",width:"13",height:"13",rx:"2"}),jsxRuntime.jsx("path",{d:"M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1"})]}));var Lo=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4"}),jsxRuntime.jsx("path",{d:"M7 10l5 5 5-5"}),jsxRuntime.jsx("path",{d:"M12 15V3"})]}));var uo=o(jsxRuntime.jsx(jsxRuntime.Fragment,{children:jsxRuntime.jsx("path",{d:"M17 3a2.85 2.85 0 114 4L7.5 20.5 2 22l1.5-5.5L17 3z"})}));var Ho=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M17.94 17.94A10.07 10.07 0 0112 20c-7 0-11-8-11-8a18.45 18.45 0 015.06-5.94"}),jsxRuntime.jsx("path",{d:"M9.9 4.24A9.12 9.12 0 0112 4c7 0 11 8 11 8a18.5 18.5 0 01-2.16 3.19"}),jsxRuntime.jsx("path",{d:"M14.12 14.12a3 3 0 11-4.24-4.24"}),jsxRuntime.jsx("path",{d:"M1 1l22 22"})]}));var zo=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"}),jsxRuntime.jsx("circle",{cx:"12",cy:"12",r:"3"})]}));var Eo=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"}),jsxRuntime.jsx("path",{d:"M14 2v6h6"}),jsxRuntime.jsx("path",{d:"M16 13H8"}),jsxRuntime.jsx("path",{d:"M16 17H8"}),jsxRuntime.jsx("path",{d:"M10 9H8"})]}));var Ro=o(jsxRuntime.jsx("path",{d:"M22 3H2l8 9.46V19l4 2v-8.54L22 3z"}));var Do=o(jsxRuntime.jsx(jsxRuntime.Fragment,{children:jsxRuntime.jsx("path",{d:"M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z"})}));var Wo=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("circle",{cx:"12",cy:"12",r:"3"}),jsxRuntime.jsx("path",{d:"M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41"})]}));var bo=o(jsxRuntime.jsx("path",{d:"M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z"}));var Jo=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M3 12L12 3l9 9"}),jsxRuntime.jsx("path",{d:"M5 10v9a1 1 0 001 1h12a1 1 0 001-1v-9"}),jsxRuntime.jsx("path",{d:"M9 20v-6h6v6"})]}));var Xo=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}),jsxRuntime.jsx("circle",{cx:"9",cy:"9",r:"2"}),jsxRuntime.jsx("path",{d:"M21 15l-3.086-3.086a2 2 0 00-2.828 0L6 21"})]}));var _o=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M10 13a5 5 0 007.54.54l3-3a5 5 0 00-7.07-7.07l-1.72 1.71"}),jsxRuntime.jsx("path",{d:"M14 11a5 5 0 00-7.54-.54l-3 3a5 5 0 007.07 7.07l1.71-1.71"})]}));var ot=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("rect",{x:"5",y:"11",width:"14",height:"10",rx:"2"}),jsxRuntime.jsx("path",{d:"M8 11V7a4 4 0 018 0v4"})]}));var rt=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("rect",{x:"3",y:"5",width:"18",height:"14",rx:"2"}),jsxRuntime.jsx("path",{d:"M3 7l9 6 9-6"})]}));var xt=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M4 6h16"}),jsxRuntime.jsx("path",{d:"M4 12h16"}),jsxRuntime.jsx("path",{d:"M4 18h16"})]}));var ht=o(jsxRuntime.jsx("path",{d:"M5 12h14"}));var lt=o(jsxRuntime.jsx("path",{d:"M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"}));var Vt=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M12 5v14"}),jsxRuntime.jsx("path",{d:"M5 12h14"})]}));var it=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M3 12a9 9 0 019-9 9.75 9.75 0 016.74 2.74L21 8"}),jsxRuntime.jsx("path",{d:"M21 3v5h-5"}),jsxRuntime.jsx("path",{d:"M21 12a9 9 0 01-9 9 9.75 9.75 0 01-6.74-2.74L3 16"}),jsxRuntime.jsx("path",{d:"M3 21v-5h5"})]}));var vt=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("circle",{cx:"10",cy:"10",r:"7"}),jsxRuntime.jsx("path",{d:"M21 21l-5-5"})]}));var Lt=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("circle",{cx:"18",cy:"5",r:"3"}),jsxRuntime.jsx("circle",{cx:"6",cy:"12",r:"3"}),jsxRuntime.jsx("circle",{cx:"18",cy:"19",r:"3"}),jsxRuntime.jsx("path",{d:"M8.59 13.51l6.83 3.98"}),jsxRuntime.jsx("path",{d:"M15.41 6.51l-6.82 3.98"})]}));var ut=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M11 5h10"}),jsxRuntime.jsx("path",{d:"M11 9h7"}),jsxRuntime.jsx("path",{d:"M11 13h4"}),jsxRuntime.jsx("path",{d:"M3 17l3 3 3-3"}),jsxRuntime.jsx("path",{d:"M6 18V4"})]}));var St=o(jsxRuntime.jsx("path",{d:"M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"}));var zt=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("circle",{cx:"12",cy:"12",r:"4"}),jsxRuntime.jsx("path",{d:"M12 2v2"}),jsxRuntime.jsx("path",{d:"M12 20v2"}),jsxRuntime.jsx("path",{d:"M4.93 4.93l1.41 1.41"}),jsxRuntime.jsx("path",{d:"M17.66 17.66l1.41 1.41"}),jsxRuntime.jsx("path",{d:"M2 12h2"}),jsxRuntime.jsx("path",{d:"M20 12h2"}),jsxRuntime.jsx("path",{d:"M6.34 17.66l-1.41 1.41"}),jsxRuntime.jsx("path",{d:"M19.07 4.93l-1.41 1.41"})]}));var Et=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M3 6h18"}),jsxRuntime.jsx("path",{d:"M8 6V4a2 2 0 012-2h4a2 2 0 012 2v2"}),jsxRuntime.jsx("path",{d:"M19 6l-1 14a2 2 0 01-2 2H8a2 2 0 01-2-2L5 6"}),jsxRuntime.jsx("path",{d:"M10 11v6"}),jsxRuntime.jsx("path",{d:"M14 11v6"})]}));var Rt=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4"}),jsxRuntime.jsx("path",{d:"M17 8l-5-5-5 5"}),jsxRuntime.jsx("path",{d:"M12 3v12"})]}));var Tt=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("circle",{cx:"12",cy:"8",r:"4"}),jsxRuntime.jsx("path",{d:"M4 20c0-4 4-6 8-6s8 2 8 6"})]}));var Ot=o(jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx("path",{d:"M5 12.55a11 11 0 0114.08 0"}),jsxRuntime.jsx("path",{d:"M1.42 9a16 16 0 0121.16 0"}),jsxRuntime.jsx("path",{d:"M8.53 16.11a6 6 0 016.95 0"}),jsxRuntime.jsx("circle",{cx:"12",cy:"20",r:"1",fill:"currentColor"})]}));
|
|
2
|
+
exports.VexArrowDown=T;exports.VexArrowLeft=O;exports.VexArrowRight=J;exports.VexArrowUp=X;exports.VexBattery=_;exports.VexBell=oo;exports.VexBookmark=ro;exports.VexCalendar=ao;exports.VexCheck=ho;exports.VexClock=lo;exports.VexClose=mo;exports.VexCloud=Io;exports.VexCopy=vo;exports.VexDownload=Lo;exports.VexEdit=uo;exports.VexEye=zo;exports.VexEyeOff=Ho;exports.VexFile=Eo;exports.VexFilter=Ro;exports.VexFolder=Do;exports.VexGear=Wo;exports.VexHeart=bo;exports.VexHome=Jo;exports.VexImage=Xo;exports.VexLink=_o;exports.VexLock=ot;exports.VexMail=rt;exports.VexMenu=xt;exports.VexMinus=ht;exports.VexMoon=lt;exports.VexPlus=Vt;exports.VexRefresh=it;exports.VexSearch=vt;exports.VexShare=Lt;exports.VexSort=ut;exports.VexStar=St;exports.VexSun=zt;exports.VexTrash=Et;exports.VexUpload=Rt;exports.VexUser=Tt;exports.VexWifi=Ot;exports.createIcon=o;//# sourceMappingURL=index.cjs.map
|
|
3
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/create-icon.tsx","../src/icons/vex-arrow-down.tsx","../src/icons/vex-arrow-left.tsx","../src/icons/vex-arrow-right.tsx","../src/icons/vex-arrow-up.tsx","../src/icons/vex-battery.tsx","../src/icons/vex-bell.tsx","../src/icons/vex-bookmark.tsx","../src/icons/vex-calendar.tsx","../src/icons/vex-check.tsx","../src/icons/vex-clock.tsx","../src/icons/vex-close.tsx","../src/icons/vex-cloud.tsx","../src/icons/vex-copy.tsx","../src/icons/vex-download.tsx","../src/icons/vex-edit.tsx","../src/icons/vex-eye-off.tsx","../src/icons/vex-eye.tsx","../src/icons/vex-file.tsx","../src/icons/vex-filter.tsx","../src/icons/vex-folder.tsx","../src/icons/vex-gear.tsx","../src/icons/vex-heart.tsx","../src/icons/vex-home.tsx","../src/icons/vex-image.tsx","../src/icons/vex-link.tsx","../src/icons/vex-lock.tsx","../src/icons/vex-mail.tsx","../src/icons/vex-menu.tsx","../src/icons/vex-minus.tsx","../src/icons/vex-moon.tsx","../src/icons/vex-plus.tsx","../src/icons/vex-refresh.tsx","../src/icons/vex-search.tsx","../src/icons/vex-share.tsx","../src/icons/vex-sort.tsx","../src/icons/vex-star.tsx","../src/icons/vex-sun.tsx","../src/icons/vex-trash.tsx","../src/icons/vex-upload.tsx","../src/icons/vex-user.tsx","../src/icons/vex-wifi.tsx"],"names":["defaultProps","createIcon","paths","size","props","jsx","VexArrowDown","jsxs","Fragment","VexArrowLeft","VexArrowRight","VexArrowUp","VexBattery","VexBell","VexBookmark","VexCalendar","VexCheck","VexClock","VexClose","VexCloud","VexCopy","VexDownload","VexEdit","VexEyeOff","VexEye","VexFile","VexFilter","VexFolder","VexGear","VexHeart","VexHome","VexImage","VexLink","VexLock","VexMail","VexMenu","VexMinus","VexMoon","VexPlus","VexRefresh","VexSearch","VexShare","VexSort","VexStar","VexSun","VexTrash","VexUpload","VexUser","VexWifi"],"mappings":"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","file":"index.cjs","sourcesContent":["/**\n * vexICONS - Icon Factory\n * Gemeinsame Basis für alle Icons\n */\nimport { ComponentType, SVGProps, ReactNode } from \"react\"\n\nexport type IconProps = SVGProps<SVGSVGElement> & {\n size?: number | string\n}\n\nconst defaultProps = {\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 24,\n height: 24,\n viewBox: \"0 0 24 24\",\n fill: \"none\",\n stroke: \"currentColor\",\n strokeWidth: 2,\n strokeLinecap: \"round\" as const,\n strokeLinejoin: \"round\" as const,\n}\n\nexport const createIcon = (paths: ReactNode): ComponentType<IconProps> => {\n const Icon = ({ size = 24, ...props }: IconProps) => (\n <svg {...defaultProps} width={size} height={size} {...props}>\n {paths}\n </svg>\n )\n return Icon\n}\n","import { createIcon } from \"../create-icon\"\n\nexport const VexArrowDown = createIcon(\n <>\n <path d=\"M12 5v14\" />\n <path d=\"M19 12l-7 7-7-7\" />\n </>\n)\n\nexport default VexArrowDown\n","import { createIcon } from \"../create-icon\"\n\nexport const VexArrowLeft = createIcon(\n <>\n <path d=\"M19 12H5\" />\n <path d=\"M11 19l-7-7 7-7\" />\n </>\n)\n\nexport default VexArrowLeft\n","import { createIcon } from \"../create-icon\"\n\nexport const VexArrowRight = createIcon(\n <>\n <path d=\"M5 12h14\" />\n <path d=\"M13 5l7 7-7 7\" />\n </>\n)\n\nexport default VexArrowRight\n","import { createIcon } from \"../create-icon\"\n\nexport const VexArrowUp = createIcon(\n <>\n <path d=\"M12 19V5\" />\n <path d=\"M5 12l7-7 7 7\" />\n </>\n)\n\nexport default VexArrowUp\n","import { createIcon } from \"../create-icon\"\n\nexport const VexBattery = createIcon(\n <>\n <rect x=\"2\" y=\"7\" width=\"18\" height=\"10\" rx=\"2\" />\n <path d=\"M22 11v2\" />\n <path d=\"M6 11v2\" />\n <path d=\"M10 11v2\" />\n <path d=\"M14 11v2\" />\n </>\n)\n\nexport default VexBattery\n","import { createIcon } from \"../create-icon\"\n\nexport const VexBell = createIcon(\n <>\n <path d=\"M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9\" />\n <path d=\"M13.73 21a2 2 0 01-3.46 0\" />\n </>\n)\n\nexport default VexBell\n","import { createIcon } from \"../create-icon\"\n\nexport const VexBookmark = createIcon(\n <path d=\"M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z\" />\n)\n\nexport default VexBookmark\n","import { createIcon } from \"../create-icon\"\n\nexport const VexCalendar = createIcon(\n <>\n <rect x=\"3\" y=\"4\" width=\"18\" height=\"18\" rx=\"2\" />\n <path d=\"M16 2v4M8 2v4M3 10h18\" />\n </>\n)\n\nexport default VexCalendar\n","import { createIcon } from \"../create-icon\"\n\nexport const VexCheck = createIcon(\n <path d=\"M4 12l5 5L20 6\" />\n)\n\nexport default VexCheck\n","import { createIcon } from \"../create-icon\"\n\nexport const VexClock = createIcon(\n <>\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M12 6v6l4 2\" />\n </>\n)\n\nexport default VexClock\n","import { createIcon } from \"../create-icon\"\n\nexport const VexClose = createIcon(\n <>\n <path d=\"M18 6L6 18\" />\n <path d=\"M6 6l12 12\" />\n </>\n)\n\nexport default VexClose\n","import { createIcon } from \"../create-icon\"\n\nexport const VexCloud = createIcon(\n <path d=\"M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z\" />\n)\n\nexport default VexCloud\n","import { createIcon } from \"../create-icon\"\n\nexport const VexCopy = createIcon(\n <>\n <rect x=\"9\" y=\"9\" width=\"13\" height=\"13\" rx=\"2\" />\n <path d=\"M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1\" />\n </>\n)\n\nexport default VexCopy\n","import { createIcon } from \"../create-icon\"\n\nexport const VexDownload = createIcon(\n <>\n <path d=\"M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4\" />\n <path d=\"M7 10l5 5 5-5\" />\n <path d=\"M12 15V3\" />\n </>\n)\n\nexport default VexDownload\n","import { createIcon } from \"../create-icon\"\n\nexport const VexEdit = createIcon(\n <>\n <path d=\"M17 3a2.85 2.85 0 114 4L7.5 20.5 2 22l1.5-5.5L17 3z\" />\n </>\n)\n\nexport default VexEdit\n","import { createIcon } from \"../create-icon\"\n\nexport const VexEyeOff = createIcon(\n <>\n <path d=\"M17.94 17.94A10.07 10.07 0 0112 20c-7 0-11-8-11-8a18.45 18.45 0 015.06-5.94\" />\n <path d=\"M9.9 4.24A9.12 9.12 0 0112 4c7 0 11 8 11 8a18.5 18.5 0 01-2.16 3.19\" />\n <path d=\"M14.12 14.12a3 3 0 11-4.24-4.24\" />\n <path d=\"M1 1l22 22\" />\n </>\n)\n\nexport default VexEyeOff\n","import { createIcon } from \"../create-icon\"\n\nexport const VexEye = createIcon(\n <>\n <path d=\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z\" />\n <circle cx=\"12\" cy=\"12\" r=\"3\" />\n </>\n)\n\nexport default VexEye\n","import { createIcon } from \"../create-icon\"\n\nexport const VexFile = createIcon(\n <>\n <path d=\"M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z\" />\n <path d=\"M14 2v6h6\" />\n <path d=\"M16 13H8\" />\n <path d=\"M16 17H8\" />\n <path d=\"M10 9H8\" />\n </>\n)\n\nexport default VexFile\n","import { createIcon } from \"../create-icon\"\n\nexport const VexFilter = createIcon(\n <path d=\"M22 3H2l8 9.46V19l4 2v-8.54L22 3z\" />\n)\n\nexport default VexFilter\n","import { createIcon } from \"../create-icon\"\n\nexport const VexFolder = createIcon(\n <>\n <path d=\"M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z\" />\n </>\n)\n\nexport default VexFolder\n","import { createIcon } from \"../create-icon\"\n\nexport const VexGear = createIcon(\n <>\n <circle cx=\"12\" cy=\"12\" r=\"3\" />\n <path d=\"M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41\" />\n </>\n)\n\nexport default VexGear\n","import { createIcon } from \"../create-icon\"\n\nexport const VexHeart = createIcon(\n <path d=\"M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z\" />\n)\n\nexport default VexHeart\n","/**\n * VexHome Icon\n * Selbst designt - 24x24 Grid, 2px Stroke\n */\nimport { createIcon } from \"../create-icon\"\n\nexport const VexHome = createIcon(\n <>\n <path d=\"M3 12L12 3l9 9\" />\n <path d=\"M5 10v9a1 1 0 001 1h12a1 1 0 001-1v-9\" />\n <path d=\"M9 20v-6h6v6\" />\n </>\n)\n\nexport default VexHome\n","import { createIcon } from \"../create-icon\"\n\nexport const VexImage = createIcon(\n <>\n <rect x=\"3\" y=\"3\" width=\"18\" height=\"18\" rx=\"2\" />\n <circle cx=\"9\" cy=\"9\" r=\"2\" />\n <path d=\"M21 15l-3.086-3.086a2 2 0 00-2.828 0L6 21\" />\n </>\n)\n\nexport default VexImage\n","import { createIcon } from \"../create-icon\"\n\nexport const VexLink = createIcon(\n <>\n <path d=\"M10 13a5 5 0 007.54.54l3-3a5 5 0 00-7.07-7.07l-1.72 1.71\" />\n <path d=\"M14 11a5 5 0 00-7.54-.54l-3 3a5 5 0 007.07 7.07l1.71-1.71\" />\n </>\n)\n\nexport default VexLink\n","import { createIcon } from \"../create-icon\"\n\nexport const VexLock = createIcon(\n <>\n <rect x=\"5\" y=\"11\" width=\"14\" height=\"10\" rx=\"2\" />\n <path d=\"M8 11V7a4 4 0 018 0v4\" />\n </>\n)\n\nexport default VexLock\n","import { createIcon } from \"../create-icon\"\n\nexport const VexMail = createIcon(\n <>\n <rect x=\"3\" y=\"5\" width=\"18\" height=\"14\" rx=\"2\" />\n <path d=\"M3 7l9 6 9-6\" />\n </>\n)\n\nexport default VexMail\n","import { createIcon } from \"../create-icon\"\n\nexport const VexMenu = createIcon(\n <>\n <path d=\"M4 6h16\" />\n <path d=\"M4 12h16\" />\n <path d=\"M4 18h16\" />\n </>\n)\n\nexport default VexMenu\n","import { createIcon } from \"../create-icon\"\n\nexport const VexMinus = createIcon(\n <path d=\"M5 12h14\" />\n)\n\nexport default VexMinus\n","import { createIcon } from \"../create-icon\"\n\nexport const VexMoon = createIcon(\n <path d=\"M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z\" />\n)\n\nexport default VexMoon\n","import { createIcon } from \"../create-icon\"\n\nexport const VexPlus = createIcon(\n <>\n <path d=\"M12 5v14\" />\n <path d=\"M5 12h14\" />\n </>\n)\n\nexport default VexPlus\n","import { createIcon } from \"../create-icon\"\n\nexport const VexRefresh = createIcon(\n <>\n <path d=\"M3 12a9 9 0 019-9 9.75 9.75 0 016.74 2.74L21 8\" />\n <path d=\"M21 3v5h-5\" />\n <path d=\"M21 12a9 9 0 01-9 9 9.75 9.75 0 01-6.74-2.74L3 16\" />\n <path d=\"M3 21v-5h5\" />\n </>\n)\n\nexport default VexRefresh\n","import { createIcon } from \"../create-icon\"\nexport const VexSearch = createIcon(\n <>\n <circle cx=\"10\" cy=\"10\" r=\"7\" />\n <path d=\"M21 21l-5-5\" />\n </>\n)\nexport default VexSearch\n","import { createIcon } from \"../create-icon\"\n\nexport const VexShare = createIcon(\n <>\n <circle cx=\"18\" cy=\"5\" r=\"3\" />\n <circle cx=\"6\" cy=\"12\" r=\"3\" />\n <circle cx=\"18\" cy=\"19\" r=\"3\" />\n <path d=\"M8.59 13.51l6.83 3.98\" />\n <path d=\"M15.41 6.51l-6.82 3.98\" />\n </>\n)\n\nexport default VexShare\n","import { createIcon } from \"../create-icon\"\n\nexport const VexSort = createIcon(\n <>\n <path d=\"M11 5h10\" />\n <path d=\"M11 9h7\" />\n <path d=\"M11 13h4\" />\n <path d=\"M3 17l3 3 3-3\" />\n <path d=\"M6 18V4\" />\n </>\n)\n\nexport default VexSort\n","import { createIcon } from \"../create-icon\"\n\nexport const VexStar = createIcon(\n <path d=\"M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z\" />\n)\n\nexport default VexStar\n","import { createIcon } from \"../create-icon\"\n\nexport const VexSun = createIcon(\n <>\n <circle cx=\"12\" cy=\"12\" r=\"4\" />\n <path d=\"M12 2v2\" />\n <path d=\"M12 20v2\" />\n <path d=\"M4.93 4.93l1.41 1.41\" />\n <path d=\"M17.66 17.66l1.41 1.41\" />\n <path d=\"M2 12h2\" />\n <path d=\"M20 12h2\" />\n <path d=\"M6.34 17.66l-1.41 1.41\" />\n <path d=\"M19.07 4.93l-1.41 1.41\" />\n </>\n)\n\nexport default VexSun\n","import { createIcon } from \"../create-icon\"\n\nexport const VexTrash = createIcon(\n <>\n <path d=\"M3 6h18\" />\n <path d=\"M8 6V4a2 2 0 012-2h4a2 2 0 012 2v2\" />\n <path d=\"M19 6l-1 14a2 2 0 01-2 2H8a2 2 0 01-2-2L5 6\" />\n <path d=\"M10 11v6\" />\n <path d=\"M14 11v6\" />\n </>\n)\n\nexport default VexTrash\n","import { createIcon } from \"../create-icon\"\n\nexport const VexUpload = createIcon(\n <>\n <path d=\"M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4\" />\n <path d=\"M17 8l-5-5-5 5\" />\n <path d=\"M12 3v12\" />\n </>\n)\n\nexport default VexUpload\n","import { createIcon } from \"../create-icon\"\n\nexport const VexUser = createIcon(\n <>\n <circle cx=\"12\" cy=\"8\" r=\"4\" />\n <path d=\"M4 20c0-4 4-6 8-6s8 2 8 6\" />\n </>\n)\n\nexport default VexUser\n","import { createIcon } from \"../create-icon\"\n\nexport const VexWifi = createIcon(\n <>\n <path d=\"M5 12.55a11 11 0 0114.08 0\" />\n <path d=\"M1.42 9a16 16 0 0121.16 0\" />\n <path d=\"M8.53 16.11a6 6 0 016.95 0\" />\n <circle cx=\"12\" cy=\"20\" r=\"1\" fill=\"currentColor\" />\n </>\n)\n\nexport default VexWifi\n"]}
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { SVGProps, ReactNode, ComponentType } from 'react';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* vexICONS - Icon Factory
|
|
6
|
+
* Gemeinsame Basis für alle Icons
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
type IconProps = SVGProps<SVGSVGElement> & {
|
|
10
|
+
size?: number | string;
|
|
11
|
+
};
|
|
12
|
+
declare const createIcon: (paths: ReactNode) => ComponentType<IconProps>;
|
|
13
|
+
|
|
14
|
+
declare const VexArrowDown: react.ComponentType<IconProps>;
|
|
15
|
+
|
|
16
|
+
declare const VexArrowLeft: react.ComponentType<IconProps>;
|
|
17
|
+
|
|
18
|
+
declare const VexArrowRight: react.ComponentType<IconProps>;
|
|
19
|
+
|
|
20
|
+
declare const VexArrowUp: react.ComponentType<IconProps>;
|
|
21
|
+
|
|
22
|
+
declare const VexBattery: react.ComponentType<IconProps>;
|
|
23
|
+
|
|
24
|
+
declare const VexBell: react.ComponentType<IconProps>;
|
|
25
|
+
|
|
26
|
+
declare const VexBookmark: react.ComponentType<IconProps>;
|
|
27
|
+
|
|
28
|
+
declare const VexCalendar: react.ComponentType<IconProps>;
|
|
29
|
+
|
|
30
|
+
declare const VexCheck: react.ComponentType<IconProps>;
|
|
31
|
+
|
|
32
|
+
declare const VexClock: react.ComponentType<IconProps>;
|
|
33
|
+
|
|
34
|
+
declare const VexClose: react.ComponentType<IconProps>;
|
|
35
|
+
|
|
36
|
+
declare const VexCloud: react.ComponentType<IconProps>;
|
|
37
|
+
|
|
38
|
+
declare const VexCopy: react.ComponentType<IconProps>;
|
|
39
|
+
|
|
40
|
+
declare const VexDownload: react.ComponentType<IconProps>;
|
|
41
|
+
|
|
42
|
+
declare const VexEdit: react.ComponentType<IconProps>;
|
|
43
|
+
|
|
44
|
+
declare const VexEyeOff: react.ComponentType<IconProps>;
|
|
45
|
+
|
|
46
|
+
declare const VexEye: react.ComponentType<IconProps>;
|
|
47
|
+
|
|
48
|
+
declare const VexFile: react.ComponentType<IconProps>;
|
|
49
|
+
|
|
50
|
+
declare const VexFilter: react.ComponentType<IconProps>;
|
|
51
|
+
|
|
52
|
+
declare const VexFolder: react.ComponentType<IconProps>;
|
|
53
|
+
|
|
54
|
+
declare const VexGear: react.ComponentType<IconProps>;
|
|
55
|
+
|
|
56
|
+
declare const VexHeart: react.ComponentType<IconProps>;
|
|
57
|
+
|
|
58
|
+
declare const VexHome: react.ComponentType<IconProps>;
|
|
59
|
+
|
|
60
|
+
declare const VexImage: react.ComponentType<IconProps>;
|
|
61
|
+
|
|
62
|
+
declare const VexLink: react.ComponentType<IconProps>;
|
|
63
|
+
|
|
64
|
+
declare const VexLock: react.ComponentType<IconProps>;
|
|
65
|
+
|
|
66
|
+
declare const VexMail: react.ComponentType<IconProps>;
|
|
67
|
+
|
|
68
|
+
declare const VexMenu: react.ComponentType<IconProps>;
|
|
69
|
+
|
|
70
|
+
declare const VexMinus: react.ComponentType<IconProps>;
|
|
71
|
+
|
|
72
|
+
declare const VexMoon: react.ComponentType<IconProps>;
|
|
73
|
+
|
|
74
|
+
declare const VexPlus: react.ComponentType<IconProps>;
|
|
75
|
+
|
|
76
|
+
declare const VexRefresh: react.ComponentType<IconProps>;
|
|
77
|
+
|
|
78
|
+
declare const VexSearch: react.ComponentType<IconProps>;
|
|
79
|
+
|
|
80
|
+
declare const VexShare: react.ComponentType<IconProps>;
|
|
81
|
+
|
|
82
|
+
declare const VexSort: react.ComponentType<IconProps>;
|
|
83
|
+
|
|
84
|
+
declare const VexStar: react.ComponentType<IconProps>;
|
|
85
|
+
|
|
86
|
+
declare const VexSun: react.ComponentType<IconProps>;
|
|
87
|
+
|
|
88
|
+
declare const VexTrash: react.ComponentType<IconProps>;
|
|
89
|
+
|
|
90
|
+
declare const VexUpload: react.ComponentType<IconProps>;
|
|
91
|
+
|
|
92
|
+
declare const VexUser: react.ComponentType<IconProps>;
|
|
93
|
+
|
|
94
|
+
declare const VexWifi: react.ComponentType<IconProps>;
|
|
95
|
+
|
|
96
|
+
export { type IconProps, VexArrowDown, VexArrowLeft, VexArrowRight, VexArrowUp, VexBattery, VexBell, VexBookmark, VexCalendar, VexCheck, VexClock, VexClose, VexCloud, VexCopy, VexDownload, VexEdit, VexEye, VexEyeOff, VexFile, VexFilter, VexFolder, VexGear, VexHeart, VexHome, VexImage, VexLink, VexLock, VexMail, VexMenu, VexMinus, VexMoon, VexPlus, VexRefresh, VexSearch, VexShare, VexSort, VexStar, VexSun, VexTrash, VexUpload, VexUser, VexWifi, createIcon };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { SVGProps, ReactNode, ComponentType } from 'react';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* vexICONS - Icon Factory
|
|
6
|
+
* Gemeinsame Basis für alle Icons
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
type IconProps = SVGProps<SVGSVGElement> & {
|
|
10
|
+
size?: number | string;
|
|
11
|
+
};
|
|
12
|
+
declare const createIcon: (paths: ReactNode) => ComponentType<IconProps>;
|
|
13
|
+
|
|
14
|
+
declare const VexArrowDown: react.ComponentType<IconProps>;
|
|
15
|
+
|
|
16
|
+
declare const VexArrowLeft: react.ComponentType<IconProps>;
|
|
17
|
+
|
|
18
|
+
declare const VexArrowRight: react.ComponentType<IconProps>;
|
|
19
|
+
|
|
20
|
+
declare const VexArrowUp: react.ComponentType<IconProps>;
|
|
21
|
+
|
|
22
|
+
declare const VexBattery: react.ComponentType<IconProps>;
|
|
23
|
+
|
|
24
|
+
declare const VexBell: react.ComponentType<IconProps>;
|
|
25
|
+
|
|
26
|
+
declare const VexBookmark: react.ComponentType<IconProps>;
|
|
27
|
+
|
|
28
|
+
declare const VexCalendar: react.ComponentType<IconProps>;
|
|
29
|
+
|
|
30
|
+
declare const VexCheck: react.ComponentType<IconProps>;
|
|
31
|
+
|
|
32
|
+
declare const VexClock: react.ComponentType<IconProps>;
|
|
33
|
+
|
|
34
|
+
declare const VexClose: react.ComponentType<IconProps>;
|
|
35
|
+
|
|
36
|
+
declare const VexCloud: react.ComponentType<IconProps>;
|
|
37
|
+
|
|
38
|
+
declare const VexCopy: react.ComponentType<IconProps>;
|
|
39
|
+
|
|
40
|
+
declare const VexDownload: react.ComponentType<IconProps>;
|
|
41
|
+
|
|
42
|
+
declare const VexEdit: react.ComponentType<IconProps>;
|
|
43
|
+
|
|
44
|
+
declare const VexEyeOff: react.ComponentType<IconProps>;
|
|
45
|
+
|
|
46
|
+
declare const VexEye: react.ComponentType<IconProps>;
|
|
47
|
+
|
|
48
|
+
declare const VexFile: react.ComponentType<IconProps>;
|
|
49
|
+
|
|
50
|
+
declare const VexFilter: react.ComponentType<IconProps>;
|
|
51
|
+
|
|
52
|
+
declare const VexFolder: react.ComponentType<IconProps>;
|
|
53
|
+
|
|
54
|
+
declare const VexGear: react.ComponentType<IconProps>;
|
|
55
|
+
|
|
56
|
+
declare const VexHeart: react.ComponentType<IconProps>;
|
|
57
|
+
|
|
58
|
+
declare const VexHome: react.ComponentType<IconProps>;
|
|
59
|
+
|
|
60
|
+
declare const VexImage: react.ComponentType<IconProps>;
|
|
61
|
+
|
|
62
|
+
declare const VexLink: react.ComponentType<IconProps>;
|
|
63
|
+
|
|
64
|
+
declare const VexLock: react.ComponentType<IconProps>;
|
|
65
|
+
|
|
66
|
+
declare const VexMail: react.ComponentType<IconProps>;
|
|
67
|
+
|
|
68
|
+
declare const VexMenu: react.ComponentType<IconProps>;
|
|
69
|
+
|
|
70
|
+
declare const VexMinus: react.ComponentType<IconProps>;
|
|
71
|
+
|
|
72
|
+
declare const VexMoon: react.ComponentType<IconProps>;
|
|
73
|
+
|
|
74
|
+
declare const VexPlus: react.ComponentType<IconProps>;
|
|
75
|
+
|
|
76
|
+
declare const VexRefresh: react.ComponentType<IconProps>;
|
|
77
|
+
|
|
78
|
+
declare const VexSearch: react.ComponentType<IconProps>;
|
|
79
|
+
|
|
80
|
+
declare const VexShare: react.ComponentType<IconProps>;
|
|
81
|
+
|
|
82
|
+
declare const VexSort: react.ComponentType<IconProps>;
|
|
83
|
+
|
|
84
|
+
declare const VexStar: react.ComponentType<IconProps>;
|
|
85
|
+
|
|
86
|
+
declare const VexSun: react.ComponentType<IconProps>;
|
|
87
|
+
|
|
88
|
+
declare const VexTrash: react.ComponentType<IconProps>;
|
|
89
|
+
|
|
90
|
+
declare const VexUpload: react.ComponentType<IconProps>;
|
|
91
|
+
|
|
92
|
+
declare const VexUser: react.ComponentType<IconProps>;
|
|
93
|
+
|
|
94
|
+
declare const VexWifi: react.ComponentType<IconProps>;
|
|
95
|
+
|
|
96
|
+
export { type IconProps, VexArrowDown, VexArrowLeft, VexArrowRight, VexArrowUp, VexBattery, VexBell, VexBookmark, VexCalendar, VexCheck, VexClock, VexClose, VexCloud, VexCopy, VexDownload, VexEdit, VexEye, VexEyeOff, VexFile, VexFilter, VexFolder, VexGear, VexHeart, VexHome, VexImage, VexLink, VexLock, VexMail, VexMenu, VexMinus, VexMoon, VexPlus, VexRefresh, VexSearch, VexShare, VexSort, VexStar, VexSun, VexTrash, VexUpload, VexUser, VexWifi, createIcon };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import {jsxs,Fragment,jsx}from'react/jsx-runtime';var U={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"},o=G=>({size:n=24,...R})=>jsx("svg",{...U,width:n,height:n,...R,children:G});var T=o(jsxs(Fragment,{children:[jsx("path",{d:"M12 5v14"}),jsx("path",{d:"M19 12l-7 7-7-7"})]}));var O=o(jsxs(Fragment,{children:[jsx("path",{d:"M19 12H5"}),jsx("path",{d:"M11 19l-7-7 7-7"})]}));var J=o(jsxs(Fragment,{children:[jsx("path",{d:"M5 12h14"}),jsx("path",{d:"M13 5l7 7-7 7"})]}));var X=o(jsxs(Fragment,{children:[jsx("path",{d:"M12 19V5"}),jsx("path",{d:"M5 12l7-7 7 7"})]}));var _=o(jsxs(Fragment,{children:[jsx("rect",{x:"2",y:"7",width:"18",height:"10",rx:"2"}),jsx("path",{d:"M22 11v2"}),jsx("path",{d:"M6 11v2"}),jsx("path",{d:"M10 11v2"}),jsx("path",{d:"M14 11v2"})]}));var oo=o(jsxs(Fragment,{children:[jsx("path",{d:"M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9"}),jsx("path",{d:"M13.73 21a2 2 0 01-3.46 0"})]}));var ro=o(jsx("path",{d:"M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z"}));var ao=o(jsxs(Fragment,{children:[jsx("rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}),jsx("path",{d:"M16 2v4M8 2v4M3 10h18"})]}));var ho=o(jsx("path",{d:"M4 12l5 5L20 6"}));var lo=o(jsxs(Fragment,{children:[jsx("circle",{cx:"12",cy:"12",r:"10"}),jsx("path",{d:"M12 6v6l4 2"})]}));var mo=o(jsxs(Fragment,{children:[jsx("path",{d:"M18 6L6 18"}),jsx("path",{d:"M6 6l12 12"})]}));var Io=o(jsx("path",{d:"M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"}));var vo=o(jsxs(Fragment,{children:[jsx("rect",{x:"9",y:"9",width:"13",height:"13",rx:"2"}),jsx("path",{d:"M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1"})]}));var Lo=o(jsxs(Fragment,{children:[jsx("path",{d:"M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4"}),jsx("path",{d:"M7 10l5 5 5-5"}),jsx("path",{d:"M12 15V3"})]}));var uo=o(jsx(Fragment,{children:jsx("path",{d:"M17 3a2.85 2.85 0 114 4L7.5 20.5 2 22l1.5-5.5L17 3z"})}));var Ho=o(jsxs(Fragment,{children:[jsx("path",{d:"M17.94 17.94A10.07 10.07 0 0112 20c-7 0-11-8-11-8a18.45 18.45 0 015.06-5.94"}),jsx("path",{d:"M9.9 4.24A9.12 9.12 0 0112 4c7 0 11 8 11 8a18.5 18.5 0 01-2.16 3.19"}),jsx("path",{d:"M14.12 14.12a3 3 0 11-4.24-4.24"}),jsx("path",{d:"M1 1l22 22"})]}));var zo=o(jsxs(Fragment,{children:[jsx("path",{d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"}),jsx("circle",{cx:"12",cy:"12",r:"3"})]}));var Eo=o(jsxs(Fragment,{children:[jsx("path",{d:"M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"}),jsx("path",{d:"M14 2v6h6"}),jsx("path",{d:"M16 13H8"}),jsx("path",{d:"M16 17H8"}),jsx("path",{d:"M10 9H8"})]}));var Ro=o(jsx("path",{d:"M22 3H2l8 9.46V19l4 2v-8.54L22 3z"}));var Do=o(jsx(Fragment,{children:jsx("path",{d:"M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z"})}));var Wo=o(jsxs(Fragment,{children:[jsx("circle",{cx:"12",cy:"12",r:"3"}),jsx("path",{d:"M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41"})]}));var bo=o(jsx("path",{d:"M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z"}));var Jo=o(jsxs(Fragment,{children:[jsx("path",{d:"M3 12L12 3l9 9"}),jsx("path",{d:"M5 10v9a1 1 0 001 1h12a1 1 0 001-1v-9"}),jsx("path",{d:"M9 20v-6h6v6"})]}));var Xo=o(jsxs(Fragment,{children:[jsx("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}),jsx("circle",{cx:"9",cy:"9",r:"2"}),jsx("path",{d:"M21 15l-3.086-3.086a2 2 0 00-2.828 0L6 21"})]}));var _o=o(jsxs(Fragment,{children:[jsx("path",{d:"M10 13a5 5 0 007.54.54l3-3a5 5 0 00-7.07-7.07l-1.72 1.71"}),jsx("path",{d:"M14 11a5 5 0 00-7.54-.54l-3 3a5 5 0 007.07 7.07l1.71-1.71"})]}));var ot=o(jsxs(Fragment,{children:[jsx("rect",{x:"5",y:"11",width:"14",height:"10",rx:"2"}),jsx("path",{d:"M8 11V7a4 4 0 018 0v4"})]}));var rt=o(jsxs(Fragment,{children:[jsx("rect",{x:"3",y:"5",width:"18",height:"14",rx:"2"}),jsx("path",{d:"M3 7l9 6 9-6"})]}));var xt=o(jsxs(Fragment,{children:[jsx("path",{d:"M4 6h16"}),jsx("path",{d:"M4 12h16"}),jsx("path",{d:"M4 18h16"})]}));var ht=o(jsx("path",{d:"M5 12h14"}));var lt=o(jsx("path",{d:"M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"}));var Vt=o(jsxs(Fragment,{children:[jsx("path",{d:"M12 5v14"}),jsx("path",{d:"M5 12h14"})]}));var it=o(jsxs(Fragment,{children:[jsx("path",{d:"M3 12a9 9 0 019-9 9.75 9.75 0 016.74 2.74L21 8"}),jsx("path",{d:"M21 3v5h-5"}),jsx("path",{d:"M21 12a9 9 0 01-9 9 9.75 9.75 0 01-6.74-2.74L3 16"}),jsx("path",{d:"M3 21v-5h5"})]}));var vt=o(jsxs(Fragment,{children:[jsx("circle",{cx:"10",cy:"10",r:"7"}),jsx("path",{d:"M21 21l-5-5"})]}));var Lt=o(jsxs(Fragment,{children:[jsx("circle",{cx:"18",cy:"5",r:"3"}),jsx("circle",{cx:"6",cy:"12",r:"3"}),jsx("circle",{cx:"18",cy:"19",r:"3"}),jsx("path",{d:"M8.59 13.51l6.83 3.98"}),jsx("path",{d:"M15.41 6.51l-6.82 3.98"})]}));var ut=o(jsxs(Fragment,{children:[jsx("path",{d:"M11 5h10"}),jsx("path",{d:"M11 9h7"}),jsx("path",{d:"M11 13h4"}),jsx("path",{d:"M3 17l3 3 3-3"}),jsx("path",{d:"M6 18V4"})]}));var St=o(jsx("path",{d:"M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"}));var zt=o(jsxs(Fragment,{children:[jsx("circle",{cx:"12",cy:"12",r:"4"}),jsx("path",{d:"M12 2v2"}),jsx("path",{d:"M12 20v2"}),jsx("path",{d:"M4.93 4.93l1.41 1.41"}),jsx("path",{d:"M17.66 17.66l1.41 1.41"}),jsx("path",{d:"M2 12h2"}),jsx("path",{d:"M20 12h2"}),jsx("path",{d:"M6.34 17.66l-1.41 1.41"}),jsx("path",{d:"M19.07 4.93l-1.41 1.41"})]}));var Et=o(jsxs(Fragment,{children:[jsx("path",{d:"M3 6h18"}),jsx("path",{d:"M8 6V4a2 2 0 012-2h4a2 2 0 012 2v2"}),jsx("path",{d:"M19 6l-1 14a2 2 0 01-2 2H8a2 2 0 01-2-2L5 6"}),jsx("path",{d:"M10 11v6"}),jsx("path",{d:"M14 11v6"})]}));var Rt=o(jsxs(Fragment,{children:[jsx("path",{d:"M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4"}),jsx("path",{d:"M17 8l-5-5-5 5"}),jsx("path",{d:"M12 3v12"})]}));var Tt=o(jsxs(Fragment,{children:[jsx("circle",{cx:"12",cy:"8",r:"4"}),jsx("path",{d:"M4 20c0-4 4-6 8-6s8 2 8 6"})]}));var Ot=o(jsxs(Fragment,{children:[jsx("path",{d:"M5 12.55a11 11 0 0114.08 0"}),jsx("path",{d:"M1.42 9a16 16 0 0121.16 0"}),jsx("path",{d:"M8.53 16.11a6 6 0 016.95 0"}),jsx("circle",{cx:"12",cy:"20",r:"1",fill:"currentColor"})]}));
|
|
2
|
+
export{T as VexArrowDown,O as VexArrowLeft,J as VexArrowRight,X as VexArrowUp,_ as VexBattery,oo as VexBell,ro as VexBookmark,ao as VexCalendar,ho as VexCheck,lo as VexClock,mo as VexClose,Io as VexCloud,vo as VexCopy,Lo as VexDownload,uo as VexEdit,zo as VexEye,Ho as VexEyeOff,Eo as VexFile,Ro as VexFilter,Do as VexFolder,Wo as VexGear,bo as VexHeart,Jo as VexHome,Xo as VexImage,_o as VexLink,ot as VexLock,rt as VexMail,xt as VexMenu,ht as VexMinus,lt as VexMoon,Vt as VexPlus,it as VexRefresh,vt as VexSearch,Lt as VexShare,ut as VexSort,St as VexStar,zt as VexSun,Et as VexTrash,Rt as VexUpload,Tt as VexUser,Ot as VexWifi,o as createIcon};//# sourceMappingURL=index.js.map
|
|
3
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/create-icon.tsx","../src/icons/vex-arrow-down.tsx","../src/icons/vex-arrow-left.tsx","../src/icons/vex-arrow-right.tsx","../src/icons/vex-arrow-up.tsx","../src/icons/vex-battery.tsx","../src/icons/vex-bell.tsx","../src/icons/vex-bookmark.tsx","../src/icons/vex-calendar.tsx","../src/icons/vex-check.tsx","../src/icons/vex-clock.tsx","../src/icons/vex-close.tsx","../src/icons/vex-cloud.tsx","../src/icons/vex-copy.tsx","../src/icons/vex-download.tsx","../src/icons/vex-edit.tsx","../src/icons/vex-eye-off.tsx","../src/icons/vex-eye.tsx","../src/icons/vex-file.tsx","../src/icons/vex-filter.tsx","../src/icons/vex-folder.tsx","../src/icons/vex-gear.tsx","../src/icons/vex-heart.tsx","../src/icons/vex-home.tsx","../src/icons/vex-image.tsx","../src/icons/vex-link.tsx","../src/icons/vex-lock.tsx","../src/icons/vex-mail.tsx","../src/icons/vex-menu.tsx","../src/icons/vex-minus.tsx","../src/icons/vex-moon.tsx","../src/icons/vex-plus.tsx","../src/icons/vex-refresh.tsx","../src/icons/vex-search.tsx","../src/icons/vex-share.tsx","../src/icons/vex-sort.tsx","../src/icons/vex-star.tsx","../src/icons/vex-sun.tsx","../src/icons/vex-trash.tsx","../src/icons/vex-upload.tsx","../src/icons/vex-user.tsx","../src/icons/vex-wifi.tsx"],"names":["defaultProps","createIcon","paths","size","props","jsx","VexArrowDown","jsxs","Fragment","VexArrowLeft","VexArrowRight","VexArrowUp","VexBattery","VexBell","VexBookmark","VexCalendar","VexCheck","VexClock","VexClose","VexCloud","VexCopy","VexDownload","VexEdit","VexEyeOff","VexEye","VexFile","VexFilter","VexFolder","VexGear","VexHeart","VexHome","VexImage","VexLink","VexLock","VexMail","VexMenu","VexMinus","VexMoon","VexPlus","VexRefresh","VexSearch","VexShare","VexSort","VexStar","VexSun","VexTrash","VexUpload","VexUser","VexWifi"],"mappings":"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","file":"index.js","sourcesContent":["/**\n * vexICONS - Icon Factory\n * Gemeinsame Basis für alle Icons\n */\nimport { ComponentType, SVGProps, ReactNode } from \"react\"\n\nexport type IconProps = SVGProps<SVGSVGElement> & {\n size?: number | string\n}\n\nconst defaultProps = {\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 24,\n height: 24,\n viewBox: \"0 0 24 24\",\n fill: \"none\",\n stroke: \"currentColor\",\n strokeWidth: 2,\n strokeLinecap: \"round\" as const,\n strokeLinejoin: \"round\" as const,\n}\n\nexport const createIcon = (paths: ReactNode): ComponentType<IconProps> => {\n const Icon = ({ size = 24, ...props }: IconProps) => (\n <svg {...defaultProps} width={size} height={size} {...props}>\n {paths}\n </svg>\n )\n return Icon\n}\n","import { createIcon } from \"../create-icon\"\n\nexport const VexArrowDown = createIcon(\n <>\n <path d=\"M12 5v14\" />\n <path d=\"M19 12l-7 7-7-7\" />\n </>\n)\n\nexport default VexArrowDown\n","import { createIcon } from \"../create-icon\"\n\nexport const VexArrowLeft = createIcon(\n <>\n <path d=\"M19 12H5\" />\n <path d=\"M11 19l-7-7 7-7\" />\n </>\n)\n\nexport default VexArrowLeft\n","import { createIcon } from \"../create-icon\"\n\nexport const VexArrowRight = createIcon(\n <>\n <path d=\"M5 12h14\" />\n <path d=\"M13 5l7 7-7 7\" />\n </>\n)\n\nexport default VexArrowRight\n","import { createIcon } from \"../create-icon\"\n\nexport const VexArrowUp = createIcon(\n <>\n <path d=\"M12 19V5\" />\n <path d=\"M5 12l7-7 7 7\" />\n </>\n)\n\nexport default VexArrowUp\n","import { createIcon } from \"../create-icon\"\n\nexport const VexBattery = createIcon(\n <>\n <rect x=\"2\" y=\"7\" width=\"18\" height=\"10\" rx=\"2\" />\n <path d=\"M22 11v2\" />\n <path d=\"M6 11v2\" />\n <path d=\"M10 11v2\" />\n <path d=\"M14 11v2\" />\n </>\n)\n\nexport default VexBattery\n","import { createIcon } from \"../create-icon\"\n\nexport const VexBell = createIcon(\n <>\n <path d=\"M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9\" />\n <path d=\"M13.73 21a2 2 0 01-3.46 0\" />\n </>\n)\n\nexport default VexBell\n","import { createIcon } from \"../create-icon\"\n\nexport const VexBookmark = createIcon(\n <path d=\"M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z\" />\n)\n\nexport default VexBookmark\n","import { createIcon } from \"../create-icon\"\n\nexport const VexCalendar = createIcon(\n <>\n <rect x=\"3\" y=\"4\" width=\"18\" height=\"18\" rx=\"2\" />\n <path d=\"M16 2v4M8 2v4M3 10h18\" />\n </>\n)\n\nexport default VexCalendar\n","import { createIcon } from \"../create-icon\"\n\nexport const VexCheck = createIcon(\n <path d=\"M4 12l5 5L20 6\" />\n)\n\nexport default VexCheck\n","import { createIcon } from \"../create-icon\"\n\nexport const VexClock = createIcon(\n <>\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M12 6v6l4 2\" />\n </>\n)\n\nexport default VexClock\n","import { createIcon } from \"../create-icon\"\n\nexport const VexClose = createIcon(\n <>\n <path d=\"M18 6L6 18\" />\n <path d=\"M6 6l12 12\" />\n </>\n)\n\nexport default VexClose\n","import { createIcon } from \"../create-icon\"\n\nexport const VexCloud = createIcon(\n <path d=\"M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z\" />\n)\n\nexport default VexCloud\n","import { createIcon } from \"../create-icon\"\n\nexport const VexCopy = createIcon(\n <>\n <rect x=\"9\" y=\"9\" width=\"13\" height=\"13\" rx=\"2\" />\n <path d=\"M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1\" />\n </>\n)\n\nexport default VexCopy\n","import { createIcon } from \"../create-icon\"\n\nexport const VexDownload = createIcon(\n <>\n <path d=\"M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4\" />\n <path d=\"M7 10l5 5 5-5\" />\n <path d=\"M12 15V3\" />\n </>\n)\n\nexport default VexDownload\n","import { createIcon } from \"../create-icon\"\n\nexport const VexEdit = createIcon(\n <>\n <path d=\"M17 3a2.85 2.85 0 114 4L7.5 20.5 2 22l1.5-5.5L17 3z\" />\n </>\n)\n\nexport default VexEdit\n","import { createIcon } from \"../create-icon\"\n\nexport const VexEyeOff = createIcon(\n <>\n <path d=\"M17.94 17.94A10.07 10.07 0 0112 20c-7 0-11-8-11-8a18.45 18.45 0 015.06-5.94\" />\n <path d=\"M9.9 4.24A9.12 9.12 0 0112 4c7 0 11 8 11 8a18.5 18.5 0 01-2.16 3.19\" />\n <path d=\"M14.12 14.12a3 3 0 11-4.24-4.24\" />\n <path d=\"M1 1l22 22\" />\n </>\n)\n\nexport default VexEyeOff\n","import { createIcon } from \"../create-icon\"\n\nexport const VexEye = createIcon(\n <>\n <path d=\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z\" />\n <circle cx=\"12\" cy=\"12\" r=\"3\" />\n </>\n)\n\nexport default VexEye\n","import { createIcon } from \"../create-icon\"\n\nexport const VexFile = createIcon(\n <>\n <path d=\"M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z\" />\n <path d=\"M14 2v6h6\" />\n <path d=\"M16 13H8\" />\n <path d=\"M16 17H8\" />\n <path d=\"M10 9H8\" />\n </>\n)\n\nexport default VexFile\n","import { createIcon } from \"../create-icon\"\n\nexport const VexFilter = createIcon(\n <path d=\"M22 3H2l8 9.46V19l4 2v-8.54L22 3z\" />\n)\n\nexport default VexFilter\n","import { createIcon } from \"../create-icon\"\n\nexport const VexFolder = createIcon(\n <>\n <path d=\"M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z\" />\n </>\n)\n\nexport default VexFolder\n","import { createIcon } from \"../create-icon\"\n\nexport const VexGear = createIcon(\n <>\n <circle cx=\"12\" cy=\"12\" r=\"3\" />\n <path d=\"M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41\" />\n </>\n)\n\nexport default VexGear\n","import { createIcon } from \"../create-icon\"\n\nexport const VexHeart = createIcon(\n <path d=\"M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z\" />\n)\n\nexport default VexHeart\n","/**\n * VexHome Icon\n * Selbst designt - 24x24 Grid, 2px Stroke\n */\nimport { createIcon } from \"../create-icon\"\n\nexport const VexHome = createIcon(\n <>\n <path d=\"M3 12L12 3l9 9\" />\n <path d=\"M5 10v9a1 1 0 001 1h12a1 1 0 001-1v-9\" />\n <path d=\"M9 20v-6h6v6\" />\n </>\n)\n\nexport default VexHome\n","import { createIcon } from \"../create-icon\"\n\nexport const VexImage = createIcon(\n <>\n <rect x=\"3\" y=\"3\" width=\"18\" height=\"18\" rx=\"2\" />\n <circle cx=\"9\" cy=\"9\" r=\"2\" />\n <path d=\"M21 15l-3.086-3.086a2 2 0 00-2.828 0L6 21\" />\n </>\n)\n\nexport default VexImage\n","import { createIcon } from \"../create-icon\"\n\nexport const VexLink = createIcon(\n <>\n <path d=\"M10 13a5 5 0 007.54.54l3-3a5 5 0 00-7.07-7.07l-1.72 1.71\" />\n <path d=\"M14 11a5 5 0 00-7.54-.54l-3 3a5 5 0 007.07 7.07l1.71-1.71\" />\n </>\n)\n\nexport default VexLink\n","import { createIcon } from \"../create-icon\"\n\nexport const VexLock = createIcon(\n <>\n <rect x=\"5\" y=\"11\" width=\"14\" height=\"10\" rx=\"2\" />\n <path d=\"M8 11V7a4 4 0 018 0v4\" />\n </>\n)\n\nexport default VexLock\n","import { createIcon } from \"../create-icon\"\n\nexport const VexMail = createIcon(\n <>\n <rect x=\"3\" y=\"5\" width=\"18\" height=\"14\" rx=\"2\" />\n <path d=\"M3 7l9 6 9-6\" />\n </>\n)\n\nexport default VexMail\n","import { createIcon } from \"../create-icon\"\n\nexport const VexMenu = createIcon(\n <>\n <path d=\"M4 6h16\" />\n <path d=\"M4 12h16\" />\n <path d=\"M4 18h16\" />\n </>\n)\n\nexport default VexMenu\n","import { createIcon } from \"../create-icon\"\n\nexport const VexMinus = createIcon(\n <path d=\"M5 12h14\" />\n)\n\nexport default VexMinus\n","import { createIcon } from \"../create-icon\"\n\nexport const VexMoon = createIcon(\n <path d=\"M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z\" />\n)\n\nexport default VexMoon\n","import { createIcon } from \"../create-icon\"\n\nexport const VexPlus = createIcon(\n <>\n <path d=\"M12 5v14\" />\n <path d=\"M5 12h14\" />\n </>\n)\n\nexport default VexPlus\n","import { createIcon } from \"../create-icon\"\n\nexport const VexRefresh = createIcon(\n <>\n <path d=\"M3 12a9 9 0 019-9 9.75 9.75 0 016.74 2.74L21 8\" />\n <path d=\"M21 3v5h-5\" />\n <path d=\"M21 12a9 9 0 01-9 9 9.75 9.75 0 01-6.74-2.74L3 16\" />\n <path d=\"M3 21v-5h5\" />\n </>\n)\n\nexport default VexRefresh\n","import { createIcon } from \"../create-icon\"\nexport const VexSearch = createIcon(\n <>\n <circle cx=\"10\" cy=\"10\" r=\"7\" />\n <path d=\"M21 21l-5-5\" />\n </>\n)\nexport default VexSearch\n","import { createIcon } from \"../create-icon\"\n\nexport const VexShare = createIcon(\n <>\n <circle cx=\"18\" cy=\"5\" r=\"3\" />\n <circle cx=\"6\" cy=\"12\" r=\"3\" />\n <circle cx=\"18\" cy=\"19\" r=\"3\" />\n <path d=\"M8.59 13.51l6.83 3.98\" />\n <path d=\"M15.41 6.51l-6.82 3.98\" />\n </>\n)\n\nexport default VexShare\n","import { createIcon } from \"../create-icon\"\n\nexport const VexSort = createIcon(\n <>\n <path d=\"M11 5h10\" />\n <path d=\"M11 9h7\" />\n <path d=\"M11 13h4\" />\n <path d=\"M3 17l3 3 3-3\" />\n <path d=\"M6 18V4\" />\n </>\n)\n\nexport default VexSort\n","import { createIcon } from \"../create-icon\"\n\nexport const VexStar = createIcon(\n <path d=\"M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z\" />\n)\n\nexport default VexStar\n","import { createIcon } from \"../create-icon\"\n\nexport const VexSun = createIcon(\n <>\n <circle cx=\"12\" cy=\"12\" r=\"4\" />\n <path d=\"M12 2v2\" />\n <path d=\"M12 20v2\" />\n <path d=\"M4.93 4.93l1.41 1.41\" />\n <path d=\"M17.66 17.66l1.41 1.41\" />\n <path d=\"M2 12h2\" />\n <path d=\"M20 12h2\" />\n <path d=\"M6.34 17.66l-1.41 1.41\" />\n <path d=\"M19.07 4.93l-1.41 1.41\" />\n </>\n)\n\nexport default VexSun\n","import { createIcon } from \"../create-icon\"\n\nexport const VexTrash = createIcon(\n <>\n <path d=\"M3 6h18\" />\n <path d=\"M8 6V4a2 2 0 012-2h4a2 2 0 012 2v2\" />\n <path d=\"M19 6l-1 14a2 2 0 01-2 2H8a2 2 0 01-2-2L5 6\" />\n <path d=\"M10 11v6\" />\n <path d=\"M14 11v6\" />\n </>\n)\n\nexport default VexTrash\n","import { createIcon } from \"../create-icon\"\n\nexport const VexUpload = createIcon(\n <>\n <path d=\"M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4\" />\n <path d=\"M17 8l-5-5-5 5\" />\n <path d=\"M12 3v12\" />\n </>\n)\n\nexport default VexUpload\n","import { createIcon } from \"../create-icon\"\n\nexport const VexUser = createIcon(\n <>\n <circle cx=\"12\" cy=\"8\" r=\"4\" />\n <path d=\"M4 20c0-4 4-6 8-6s8 2 8 6\" />\n </>\n)\n\nexport default VexUser\n","import { createIcon } from \"../create-icon\"\n\nexport const VexWifi = createIcon(\n <>\n <path d=\"M5 12.55a11 11 0 0114.08 0\" />\n <path d=\"M1.42 9a16 16 0 0121.16 0\" />\n <path d=\"M8.53 16.11a6 6 0 016.95 0\" />\n <circle cx=\"12\" cy=\"20\" r=\"1\" fill=\"currentColor\" />\n </>\n)\n\nexport default VexWifi\n"]}
|
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "vexicons",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Custom React icon library - 24x24 Grid, 2px Stroke",
|
|
5
|
+
"author": "vextm",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"react",
|
|
9
|
+
"icons",
|
|
10
|
+
"svg",
|
|
11
|
+
"vexicons",
|
|
12
|
+
"icon-library"
|
|
13
|
+
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/vextm/vexicons"
|
|
17
|
+
},
|
|
18
|
+
"type": "module",
|
|
19
|
+
"main": "./dist/index.cjs",
|
|
20
|
+
"module": "./dist/index.js",
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"import": {
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"default": "./dist/index.js"
|
|
27
|
+
},
|
|
28
|
+
"require": {
|
|
29
|
+
"types": "./dist/index.d.cts",
|
|
30
|
+
"default": "./dist/index.cjs"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"dist"
|
|
36
|
+
],
|
|
37
|
+
"sideEffects": false,
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build:icons": "node scripts/build-icons.js",
|
|
40
|
+
"build": "npm run build:icons && tsup",
|
|
41
|
+
"dev": "tsup --watch",
|
|
42
|
+
"prepublishOnly": "npm run build"
|
|
43
|
+
},
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"react": ">=17.0.0"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/react": "^18.2.0",
|
|
49
|
+
"react": "^18.2.0",
|
|
50
|
+
"tsup": "^8.0.0",
|
|
51
|
+
"typescript": "^5.0.0"
|
|
52
|
+
}
|
|
53
|
+
}
|