foamicons 0.7.0 → 0.8.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 +47 -1
- package/dist/chunk-F5BYQSRA.cjs +26 -0
- package/dist/chunk-F5BYQSRA.cjs.map +1 -0
- package/dist/chunk-FRNFRKV5.js +20 -0
- package/dist/chunk-FRNFRKV5.js.map +1 -0
- package/dist/chunk-JGDKMBYS.cjs +23 -0
- package/dist/chunk-JGDKMBYS.cjs.map +1 -0
- package/dist/chunk-K7POIF73.js +21 -0
- package/dist/chunk-K7POIF73.js.map +1 -0
- package/dist/chunk-RN2PM7O2.cjs +22 -0
- package/dist/chunk-RN2PM7O2.cjs.map +1 -0
- package/dist/chunk-WQIOPUNL.js +24 -0
- package/dist/chunk-WQIOPUNL.js.map +1 -0
- package/dist/icons/Heart.cjs +13 -0
- package/dist/icons/Heart.cjs.map +1 -0
- package/dist/icons/Heart.d.cts +19 -0
- package/dist/icons/Heart.d.ts +19 -0
- package/dist/icons/Heart.js +4 -0
- package/dist/icons/Heart.js.map +1 -0
- package/dist/icons/HeartDuotone.cjs +13 -0
- package/dist/icons/HeartDuotone.cjs.map +1 -0
- package/dist/icons/HeartDuotone.d.cts +19 -0
- package/dist/icons/HeartDuotone.d.ts +19 -0
- package/dist/icons/HeartDuotone.js +4 -0
- package/dist/icons/HeartDuotone.js.map +1 -0
- package/dist/icons/HeartFill.cjs +13 -0
- package/dist/icons/HeartFill.cjs.map +1 -0
- package/dist/icons/HeartFill.d.cts +19 -0
- package/dist/icons/HeartFill.d.ts +19 -0
- package/dist/icons/HeartFill.js +4 -0
- package/dist/icons/HeartFill.js.map +1 -0
- package/dist/icons/index.cjs +144 -139
- package/dist/icons/index.d.cts +3 -2
- package/dist/icons/index.d.ts +3 -2
- package/dist/icons/index.js +44 -43
- package/dist/index.cjs +15829 -2237
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +375 -370
- package/dist/index.d.ts +375 -370
- package/dist/index.js +1961 -373
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-6V5J3XU6.js +0 -40
- package/dist/chunk-6V5J3XU6.js.map +0 -1
- package/dist/chunk-EFM3QJTS.js +0 -40
- package/dist/chunk-EFM3QJTS.js.map +0 -1
- package/dist/chunk-GZP2WBBU.cjs +0 -42
- package/dist/chunk-GZP2WBBU.cjs.map +0 -1
- package/dist/chunk-IMIR52PB.cjs +0 -42
- package/dist/chunk-IMIR52PB.cjs.map +0 -1
- package/dist/icons/ClockArrowDown1.cjs +0 -13
- package/dist/icons/ClockArrowDown1.cjs.map +0 -1
- package/dist/icons/ClockArrowDown1.d.cts +0 -19
- package/dist/icons/ClockArrowDown1.d.ts +0 -19
- package/dist/icons/ClockArrowDown1.js +0 -4
- package/dist/icons/ClockArrowDown1.js.map +0 -1
- package/dist/icons/ClockArrowUp1.cjs +0 -13
- package/dist/icons/ClockArrowUp1.cjs.map +0 -1
- package/dist/icons/ClockArrowUp1.d.cts +0 -19
- package/dist/icons/ClockArrowUp1.d.ts +0 -19
- package/dist/icons/ClockArrowUp1.js +0 -4
- package/dist/icons/ClockArrowUp1.js.map +0 -1
package/README.md
CHANGED
|
@@ -117,13 +117,59 @@ import { AlertFill } from 'foamicons/icons/AlertFill';
|
|
|
117
117
|
|
|
118
118
|
### Export Aliases
|
|
119
119
|
|
|
120
|
-
Each icon is available under multiple names:
|
|
120
|
+
Each icon is available under multiple export names:
|
|
121
121
|
|
|
122
122
|
```tsx
|
|
123
123
|
import { Alert, AlertIcon, FoamAlert } from 'foamicons';
|
|
124
124
|
// All three reference the same component
|
|
125
125
|
```
|
|
126
126
|
|
|
127
|
+
### Semantic Aliases
|
|
128
|
+
|
|
129
|
+
Icons can also be imported using semantic aliases that map to canonical icon names. This improves discoverability and allows you to use familiar names:
|
|
130
|
+
|
|
131
|
+
```tsx
|
|
132
|
+
// All of these import the same icon (Cog)
|
|
133
|
+
import { Cog, Settings, Gear, Preferences, Config } from 'foamicons';
|
|
134
|
+
|
|
135
|
+
// Aliases work with all variants
|
|
136
|
+
import { Settings, SettingsDuotone, SettingsFill } from 'foamicons';
|
|
137
|
+
|
|
138
|
+
// Aliases also have Icon/Foam prefixes
|
|
139
|
+
import { SettingsIcon, FoamSettings } from 'foamicons';
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
**Common alias examples:**
|
|
143
|
+
| Canonical Name | Aliases |
|
|
144
|
+
|---------------|---------|
|
|
145
|
+
| `Search` | `Find`, `Lookup`, `MagnifyingGlass`, `Query` |
|
|
146
|
+
| `Cog` | `Settings`, `Gear`, `Preferences`, `Config` |
|
|
147
|
+
| `House` | `Home` |
|
|
148
|
+
| `User` | `Person`, `Profile`, `Account` |
|
|
149
|
+
| `Trash` | `Delete`, `Remove`, `Bin`, `Garbage` |
|
|
150
|
+
| `Checkmark` | `Check`, `Done`, `Complete`, `Tick`, `Success` |
|
|
151
|
+
| `CircleX` | `Close`, `Cancel`, `X`, `Times`, `Clear` |
|
|
152
|
+
| `CircleAlert` | `WarningCircle`, `Error` |
|
|
153
|
+
|
|
154
|
+
See [`icons/aliases.json`](../../icons/aliases.json) for the complete list.
|
|
155
|
+
|
|
156
|
+
### Alias Lookup Helpers
|
|
157
|
+
|
|
158
|
+
For tooling and dynamic usage, the library exports helper maps:
|
|
159
|
+
|
|
160
|
+
```tsx
|
|
161
|
+
import {
|
|
162
|
+
iconAliases, // { Search: ['Find', 'Lookup', ...], ... }
|
|
163
|
+
aliasToCanonical, // { Find: 'Search', Settings: 'Cog', ... }
|
|
164
|
+
iconTags, // { Search: ['search', 'find'], ... }
|
|
165
|
+
getCanonicalName // (alias: string) => canonicalName
|
|
166
|
+
} from 'foamicons';
|
|
167
|
+
|
|
168
|
+
// Get canonical name from an alias
|
|
169
|
+
getCanonicalName('Settings'); // 'Cog'
|
|
170
|
+
getCanonicalName('Search'); // 'Search' (already canonical)
|
|
171
|
+
```
|
|
172
|
+
|
|
127
173
|
## Props
|
|
128
174
|
|
|
129
175
|
| Prop | Type | Default | Description |
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkBT732HOR_cjs = require('./chunk-BT732HOR.cjs');
|
|
4
|
+
|
|
5
|
+
// src/icons/HeartDuotone.tsx
|
|
6
|
+
var __iconNode = [
|
|
7
|
+
[
|
|
8
|
+
"path",
|
|
9
|
+
{
|
|
10
|
+
d: "M14 6C14 9.79309 8.60468 13.1366 8.0465 13.4723C8.01561 13.4909 7.98439 13.4909 7.9535 13.4723C7.39533 13.1366 2.00016 9.79309 2 6C1.99992 4 2.99992 2.50002 5 2.5C7.00008 2.49998 8 4 8 4C8 4 9.00008 2.5 11 2.5C12.9999 2.5 14 4 14 6Z",
|
|
11
|
+
fill: "var(--foamicon-secondary-color, currentColor)",
|
|
12
|
+
stroke: "currentColor",
|
|
13
|
+
strokeLinecap: "round",
|
|
14
|
+
strokeLinejoin: "round",
|
|
15
|
+
style: {
|
|
16
|
+
fillOpacity: "var(--foamicon-secondary-opacity, 0.25)"
|
|
17
|
+
},
|
|
18
|
+
key: "2re8nx"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
];
|
|
22
|
+
var HeartDuotone = chunkBT732HOR_cjs.createFoamicon("HeartDuotone", __iconNode);
|
|
23
|
+
|
|
24
|
+
exports.HeartDuotone = HeartDuotone;
|
|
25
|
+
//# sourceMappingURL=chunk-F5BYQSRA.cjs.map
|
|
26
|
+
//# sourceMappingURL=chunk-F5BYQSRA.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/icons/HeartDuotone.tsx"],"names":["createFoamicon"],"mappings":";;;;;AAGA,IAAM,UAAA,GAAuB;AAAA,EAC3B;AAAA,IACE,MAAA;AAAA,IACA;AAAA,MACE,CAAA,EAAG,0OAAA;AAAA,MACH,IAAA,EAAM,+CAAA;AAAA,MACN,MAAA,EAAQ,cAAA;AAAA,MACR,aAAA,EAAe,OAAA;AAAA,MACf,cAAA,EAAgB,OAAA;AAAA,MAChB,KAAA,EAAO;AAAA,QACL,WAAA,EAAa;AAAA,OACf;AAAA,MACA,GAAA,EAAK;AAAA;AACP;AAEJ,CAAA;AAeO,IAAM,YAAA,GAAeA,gCAAA,CAAe,cAAA,EAAgB,UAAU","file":"chunk-F5BYQSRA.cjs","sourcesContent":["import { createFoamicon } from '../createFoamicon';\nimport type { IconNode } from '../types';\n\nconst __iconNode: IconNode = [\n [\n 'path',\n {\n d: 'M14 6C14 9.79309 8.60468 13.1366 8.0465 13.4723C8.01561 13.4909 7.98439 13.4909 7.9535 13.4723C7.39533 13.1366 2.00016 9.79309 2 6C1.99992 4 2.99992 2.50002 5 2.5C7.00008 2.49998 8 4 8 4C8 4 9.00008 2.5 11 2.5C12.9999 2.5 14 4 14 6Z',\n fill: 'var(--foamicon-secondary-color, currentColor)',\n stroke: 'currentColor',\n strokeLinecap: 'round',\n strokeLinejoin: 'round',\n style: {\n fillOpacity: 'var(--foamicon-secondary-opacity, 0.25)'\n },\n key: '2re8nx'\n }\n ]\n];\n\n/**\n * @component @name HeartDuotone\n * @description Foamicon SVG icon component, renders a `<svg>` element\n * @preview \n * @see https://foamicons.com/icons/heart-duotone\n *\n * @param {object} props - Icon props extending SVGProps<SVGSVGElement>\n * @param {number | string} [props.size=16] - Icon size (width and height)\n * @param {number | string} [props.strokeWidth=1] - Stroke width\n * @param {boolean} [props.absoluteStrokeWidth=false] - Keep stroke width constant regardless of size\n * @param {string} [props.color='currentColor'] - Icon color (stroke color)\n * @returns {React.ReactElement} SVG icon element\n */\nexport const HeartDuotone = createFoamicon('HeartDuotone', __iconNode);\n"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { createFoamicon } from './chunk-N3CS4C56.js';
|
|
2
|
+
|
|
3
|
+
// src/icons/Heart.tsx
|
|
4
|
+
var __iconNode = [
|
|
5
|
+
[
|
|
6
|
+
"path",
|
|
7
|
+
{
|
|
8
|
+
d: "M14 6C14 9.79309 8.60468 13.1366 8.0465 13.4723C8.01561 13.4909 7.98439 13.4909 7.9535 13.4723C7.39533 13.1366 2.00016 9.79309 2 6C1.99992 4 2.99992 2.50002 5 2.5C7.00008 2.49998 8 4 8 4C8 4 9.00008 2.5 11 2.5C12.9999 2.5 14 4 14 6Z",
|
|
9
|
+
stroke: "currentColor",
|
|
10
|
+
strokeLinecap: "round",
|
|
11
|
+
strokeLinejoin: "round",
|
|
12
|
+
key: "sicc1u"
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
];
|
|
16
|
+
var Heart = createFoamicon("Heart", __iconNode);
|
|
17
|
+
|
|
18
|
+
export { Heart };
|
|
19
|
+
//# sourceMappingURL=chunk-FRNFRKV5.js.map
|
|
20
|
+
//# sourceMappingURL=chunk-FRNFRKV5.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/icons/Heart.tsx"],"names":[],"mappings":";;;AAGA,IAAM,UAAA,GAAuB;AAAA,EAC3B;AAAA,IACE,MAAA;AAAA,IACA;AAAA,MACE,CAAA,EAAG,0OAAA;AAAA,MACH,MAAA,EAAQ,cAAA;AAAA,MACR,aAAA,EAAe,OAAA;AAAA,MACf,cAAA,EAAgB,OAAA;AAAA,MAChB,GAAA,EAAK;AAAA;AACP;AAEJ,CAAA;AAeO,IAAM,KAAA,GAAQ,cAAA,CAAe,OAAA,EAAS,UAAU","file":"chunk-FRNFRKV5.js","sourcesContent":["import { createFoamicon } from '../createFoamicon';\nimport type { IconNode } from '../types';\n\nconst __iconNode: IconNode = [\n [\n 'path',\n {\n d: 'M14 6C14 9.79309 8.60468 13.1366 8.0465 13.4723C8.01561 13.4909 7.98439 13.4909 7.9535 13.4723C7.39533 13.1366 2.00016 9.79309 2 6C1.99992 4 2.99992 2.50002 5 2.5C7.00008 2.49998 8 4 8 4C8 4 9.00008 2.5 11 2.5C12.9999 2.5 14 4 14 6Z',\n stroke: 'currentColor',\n strokeLinecap: 'round',\n strokeLinejoin: 'round',\n key: 'sicc1u'\n }\n ]\n];\n\n/**\n * @component @name Heart\n * @description Foamicon SVG icon component, renders a `<svg>` element\n * @preview \n * @see https://foamicons.com/icons/heart\n *\n * @param {object} props - Icon props extending SVGProps<SVGSVGElement>\n * @param {number | string} [props.size=16] - Icon size (width and height)\n * @param {number | string} [props.strokeWidth=1] - Stroke width\n * @param {boolean} [props.absoluteStrokeWidth=false] - Keep stroke width constant regardless of size\n * @param {string} [props.color='currentColor'] - Icon color (stroke color)\n * @returns {React.ReactElement} SVG icon element\n */\nexport const Heart = createFoamicon('Heart', __iconNode);\n"]}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkBT732HOR_cjs = require('./chunk-BT732HOR.cjs');
|
|
4
|
+
|
|
5
|
+
// src/icons/HeartFill.tsx
|
|
6
|
+
var __iconNode = [
|
|
7
|
+
[
|
|
8
|
+
"path",
|
|
9
|
+
{
|
|
10
|
+
d: "M14 6C14 9.79309 8.60468 13.1366 8.0465 13.4723C8.01561 13.4909 7.98439 13.4909 7.9535 13.4723C7.39533 13.1366 2.00016 9.79309 2 6C1.99992 4 2.99992 2.50002 5 2.5C7.00008 2.49998 8 4 8 4C8 4 9.00008 2.5 11 2.5C12.9999 2.5 14 4 14 6Z",
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
stroke: "currentColor",
|
|
13
|
+
strokeLinecap: "round",
|
|
14
|
+
strokeLinejoin: "round",
|
|
15
|
+
key: "hwd17t"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
];
|
|
19
|
+
var HeartFill = chunkBT732HOR_cjs.createFoamicon("HeartFill", __iconNode);
|
|
20
|
+
|
|
21
|
+
exports.HeartFill = HeartFill;
|
|
22
|
+
//# sourceMappingURL=chunk-JGDKMBYS.cjs.map
|
|
23
|
+
//# sourceMappingURL=chunk-JGDKMBYS.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/icons/HeartFill.tsx"],"names":["createFoamicon"],"mappings":";;;;;AAGA,IAAM,UAAA,GAAuB;AAAA,EAC3B;AAAA,IACE,MAAA;AAAA,IACA;AAAA,MACE,CAAA,EAAG,0OAAA;AAAA,MACH,IAAA,EAAM,cAAA;AAAA,MACN,MAAA,EAAQ,cAAA;AAAA,MACR,aAAA,EAAe,OAAA;AAAA,MACf,cAAA,EAAgB,OAAA;AAAA,MAChB,GAAA,EAAK;AAAA;AACP;AAEJ,CAAA;AAeO,IAAM,SAAA,GAAYA,gCAAA,CAAe,WAAA,EAAa,UAAU","file":"chunk-JGDKMBYS.cjs","sourcesContent":["import { createFoamicon } from '../createFoamicon';\nimport type { IconNode } from '../types';\n\nconst __iconNode: IconNode = [\n [\n 'path',\n {\n d: 'M14 6C14 9.79309 8.60468 13.1366 8.0465 13.4723C8.01561 13.4909 7.98439 13.4909 7.9535 13.4723C7.39533 13.1366 2.00016 9.79309 2 6C1.99992 4 2.99992 2.50002 5 2.5C7.00008 2.49998 8 4 8 4C8 4 9.00008 2.5 11 2.5C12.9999 2.5 14 4 14 6Z',\n fill: 'currentColor',\n stroke: 'currentColor',\n strokeLinecap: 'round',\n strokeLinejoin: 'round',\n key: 'hwd17t'\n }\n ]\n];\n\n/**\n * @component @name HeartFill\n * @description Foamicon SVG icon component, renders a `<svg>` element\n * @preview \n * @see https://foamicons.com/icons/heart-fill\n *\n * @param {object} props - Icon props extending SVGProps<SVGSVGElement>\n * @param {number | string} [props.size=16] - Icon size (width and height)\n * @param {number | string} [props.strokeWidth=1] - Stroke width\n * @param {boolean} [props.absoluteStrokeWidth=false] - Keep stroke width constant regardless of size\n * @param {string} [props.color='currentColor'] - Icon color (stroke color)\n * @returns {React.ReactElement} SVG icon element\n */\nexport const HeartFill = createFoamicon('HeartFill', __iconNode);\n"]}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { createFoamicon } from './chunk-N3CS4C56.js';
|
|
2
|
+
|
|
3
|
+
// src/icons/HeartFill.tsx
|
|
4
|
+
var __iconNode = [
|
|
5
|
+
[
|
|
6
|
+
"path",
|
|
7
|
+
{
|
|
8
|
+
d: "M14 6C14 9.79309 8.60468 13.1366 8.0465 13.4723C8.01561 13.4909 7.98439 13.4909 7.9535 13.4723C7.39533 13.1366 2.00016 9.79309 2 6C1.99992 4 2.99992 2.50002 5 2.5C7.00008 2.49998 8 4 8 4C8 4 9.00008 2.5 11 2.5C12.9999 2.5 14 4 14 6Z",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
stroke: "currentColor",
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
key: "hwd17t"
|
|
14
|
+
}
|
|
15
|
+
]
|
|
16
|
+
];
|
|
17
|
+
var HeartFill = createFoamicon("HeartFill", __iconNode);
|
|
18
|
+
|
|
19
|
+
export { HeartFill };
|
|
20
|
+
//# sourceMappingURL=chunk-K7POIF73.js.map
|
|
21
|
+
//# sourceMappingURL=chunk-K7POIF73.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/icons/HeartFill.tsx"],"names":[],"mappings":";;;AAGA,IAAM,UAAA,GAAuB;AAAA,EAC3B;AAAA,IACE,MAAA;AAAA,IACA;AAAA,MACE,CAAA,EAAG,0OAAA;AAAA,MACH,IAAA,EAAM,cAAA;AAAA,MACN,MAAA,EAAQ,cAAA;AAAA,MACR,aAAA,EAAe,OAAA;AAAA,MACf,cAAA,EAAgB,OAAA;AAAA,MAChB,GAAA,EAAK;AAAA;AACP;AAEJ,CAAA;AAeO,IAAM,SAAA,GAAY,cAAA,CAAe,WAAA,EAAa,UAAU","file":"chunk-K7POIF73.js","sourcesContent":["import { createFoamicon } from '../createFoamicon';\nimport type { IconNode } from '../types';\n\nconst __iconNode: IconNode = [\n [\n 'path',\n {\n d: 'M14 6C14 9.79309 8.60468 13.1366 8.0465 13.4723C8.01561 13.4909 7.98439 13.4909 7.9535 13.4723C7.39533 13.1366 2.00016 9.79309 2 6C1.99992 4 2.99992 2.50002 5 2.5C7.00008 2.49998 8 4 8 4C8 4 9.00008 2.5 11 2.5C12.9999 2.5 14 4 14 6Z',\n fill: 'currentColor',\n stroke: 'currentColor',\n strokeLinecap: 'round',\n strokeLinejoin: 'round',\n key: 'hwd17t'\n }\n ]\n];\n\n/**\n * @component @name HeartFill\n * @description Foamicon SVG icon component, renders a `<svg>` element\n * @preview \n * @see https://foamicons.com/icons/heart-fill\n *\n * @param {object} props - Icon props extending SVGProps<SVGSVGElement>\n * @param {number | string} [props.size=16] - Icon size (width and height)\n * @param {number | string} [props.strokeWidth=1] - Stroke width\n * @param {boolean} [props.absoluteStrokeWidth=false] - Keep stroke width constant regardless of size\n * @param {string} [props.color='currentColor'] - Icon color (stroke color)\n * @returns {React.ReactElement} SVG icon element\n */\nexport const HeartFill = createFoamicon('HeartFill', __iconNode);\n"]}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkBT732HOR_cjs = require('./chunk-BT732HOR.cjs');
|
|
4
|
+
|
|
5
|
+
// src/icons/Heart.tsx
|
|
6
|
+
var __iconNode = [
|
|
7
|
+
[
|
|
8
|
+
"path",
|
|
9
|
+
{
|
|
10
|
+
d: "M14 6C14 9.79309 8.60468 13.1366 8.0465 13.4723C8.01561 13.4909 7.98439 13.4909 7.9535 13.4723C7.39533 13.1366 2.00016 9.79309 2 6C1.99992 4 2.99992 2.50002 5 2.5C7.00008 2.49998 8 4 8 4C8 4 9.00008 2.5 11 2.5C12.9999 2.5 14 4 14 6Z",
|
|
11
|
+
stroke: "currentColor",
|
|
12
|
+
strokeLinecap: "round",
|
|
13
|
+
strokeLinejoin: "round",
|
|
14
|
+
key: "sicc1u"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
];
|
|
18
|
+
var Heart = chunkBT732HOR_cjs.createFoamicon("Heart", __iconNode);
|
|
19
|
+
|
|
20
|
+
exports.Heart = Heart;
|
|
21
|
+
//# sourceMappingURL=chunk-RN2PM7O2.cjs.map
|
|
22
|
+
//# sourceMappingURL=chunk-RN2PM7O2.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/icons/Heart.tsx"],"names":["createFoamicon"],"mappings":";;;;;AAGA,IAAM,UAAA,GAAuB;AAAA,EAC3B;AAAA,IACE,MAAA;AAAA,IACA;AAAA,MACE,CAAA,EAAG,0OAAA;AAAA,MACH,MAAA,EAAQ,cAAA;AAAA,MACR,aAAA,EAAe,OAAA;AAAA,MACf,cAAA,EAAgB,OAAA;AAAA,MAChB,GAAA,EAAK;AAAA;AACP;AAEJ,CAAA;AAeO,IAAM,KAAA,GAAQA,gCAAA,CAAe,OAAA,EAAS,UAAU","file":"chunk-RN2PM7O2.cjs","sourcesContent":["import { createFoamicon } from '../createFoamicon';\nimport type { IconNode } from '../types';\n\nconst __iconNode: IconNode = [\n [\n 'path',\n {\n d: 'M14 6C14 9.79309 8.60468 13.1366 8.0465 13.4723C8.01561 13.4909 7.98439 13.4909 7.9535 13.4723C7.39533 13.1366 2.00016 9.79309 2 6C1.99992 4 2.99992 2.50002 5 2.5C7.00008 2.49998 8 4 8 4C8 4 9.00008 2.5 11 2.5C12.9999 2.5 14 4 14 6Z',\n stroke: 'currentColor',\n strokeLinecap: 'round',\n strokeLinejoin: 'round',\n key: 'sicc1u'\n }\n ]\n];\n\n/**\n * @component @name Heart\n * @description Foamicon SVG icon component, renders a `<svg>` element\n * @preview \n * @see https://foamicons.com/icons/heart\n *\n * @param {object} props - Icon props extending SVGProps<SVGSVGElement>\n * @param {number | string} [props.size=16] - Icon size (width and height)\n * @param {number | string} [props.strokeWidth=1] - Stroke width\n * @param {boolean} [props.absoluteStrokeWidth=false] - Keep stroke width constant regardless of size\n * @param {string} [props.color='currentColor'] - Icon color (stroke color)\n * @returns {React.ReactElement} SVG icon element\n */\nexport const Heart = createFoamicon('Heart', __iconNode);\n"]}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { createFoamicon } from './chunk-N3CS4C56.js';
|
|
2
|
+
|
|
3
|
+
// src/icons/HeartDuotone.tsx
|
|
4
|
+
var __iconNode = [
|
|
5
|
+
[
|
|
6
|
+
"path",
|
|
7
|
+
{
|
|
8
|
+
d: "M14 6C14 9.79309 8.60468 13.1366 8.0465 13.4723C8.01561 13.4909 7.98439 13.4909 7.9535 13.4723C7.39533 13.1366 2.00016 9.79309 2 6C1.99992 4 2.99992 2.50002 5 2.5C7.00008 2.49998 8 4 8 4C8 4 9.00008 2.5 11 2.5C12.9999 2.5 14 4 14 6Z",
|
|
9
|
+
fill: "var(--foamicon-secondary-color, currentColor)",
|
|
10
|
+
stroke: "currentColor",
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
style: {
|
|
14
|
+
fillOpacity: "var(--foamicon-secondary-opacity, 0.25)"
|
|
15
|
+
},
|
|
16
|
+
key: "2re8nx"
|
|
17
|
+
}
|
|
18
|
+
]
|
|
19
|
+
];
|
|
20
|
+
var HeartDuotone = createFoamicon("HeartDuotone", __iconNode);
|
|
21
|
+
|
|
22
|
+
export { HeartDuotone };
|
|
23
|
+
//# sourceMappingURL=chunk-WQIOPUNL.js.map
|
|
24
|
+
//# sourceMappingURL=chunk-WQIOPUNL.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/icons/HeartDuotone.tsx"],"names":[],"mappings":";;;AAGA,IAAM,UAAA,GAAuB;AAAA,EAC3B;AAAA,IACE,MAAA;AAAA,IACA;AAAA,MACE,CAAA,EAAG,0OAAA;AAAA,MACH,IAAA,EAAM,+CAAA;AAAA,MACN,MAAA,EAAQ,cAAA;AAAA,MACR,aAAA,EAAe,OAAA;AAAA,MACf,cAAA,EAAgB,OAAA;AAAA,MAChB,KAAA,EAAO;AAAA,QACL,WAAA,EAAa;AAAA,OACf;AAAA,MACA,GAAA,EAAK;AAAA;AACP;AAEJ,CAAA;AAeO,IAAM,YAAA,GAAe,cAAA,CAAe,cAAA,EAAgB,UAAU","file":"chunk-WQIOPUNL.js","sourcesContent":["import { createFoamicon } from '../createFoamicon';\nimport type { IconNode } from '../types';\n\nconst __iconNode: IconNode = [\n [\n 'path',\n {\n d: 'M14 6C14 9.79309 8.60468 13.1366 8.0465 13.4723C8.01561 13.4909 7.98439 13.4909 7.9535 13.4723C7.39533 13.1366 2.00016 9.79309 2 6C1.99992 4 2.99992 2.50002 5 2.5C7.00008 2.49998 8 4 8 4C8 4 9.00008 2.5 11 2.5C12.9999 2.5 14 4 14 6Z',\n fill: 'var(--foamicon-secondary-color, currentColor)',\n stroke: 'currentColor',\n strokeLinecap: 'round',\n strokeLinejoin: 'round',\n style: {\n fillOpacity: 'var(--foamicon-secondary-opacity, 0.25)'\n },\n key: '2re8nx'\n }\n ]\n];\n\n/**\n * @component @name HeartDuotone\n * @description Foamicon SVG icon component, renders a `<svg>` element\n * @preview \n * @see https://foamicons.com/icons/heart-duotone\n *\n * @param {object} props - Icon props extending SVGProps<SVGSVGElement>\n * @param {number | string} [props.size=16] - Icon size (width and height)\n * @param {number | string} [props.strokeWidth=1] - Stroke width\n * @param {boolean} [props.absoluteStrokeWidth=false] - Keep stroke width constant regardless of size\n * @param {string} [props.color='currentColor'] - Icon color (stroke color)\n * @returns {React.ReactElement} SVG icon element\n */\nexport const HeartDuotone = createFoamicon('HeartDuotone', __iconNode);\n"]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkRN2PM7O2_cjs = require('../chunk-RN2PM7O2.cjs');
|
|
4
|
+
require('../chunk-BT732HOR.cjs');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
Object.defineProperty(exports, "Heart", {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function () { return chunkRN2PM7O2_cjs.Heart; }
|
|
11
|
+
});
|
|
12
|
+
//# sourceMappingURL=Heart.cjs.map
|
|
13
|
+
//# sourceMappingURL=Heart.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"Heart.cjs"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { F as FoamIcon } from '../types-Dox7zwnl.cjs';
|
|
2
|
+
import 'react';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* @component @name Heart
|
|
6
|
+
* @description Foamicon SVG icon component, renders a `<svg>` element
|
|
7
|
+
* @preview 
|
|
8
|
+
* @see https://foamicons.com/icons/heart
|
|
9
|
+
*
|
|
10
|
+
* @param {object} props - Icon props extending SVGProps<SVGSVGElement>
|
|
11
|
+
* @param {number | string} [props.size=16] - Icon size (width and height)
|
|
12
|
+
* @param {number | string} [props.strokeWidth=1] - Stroke width
|
|
13
|
+
* @param {boolean} [props.absoluteStrokeWidth=false] - Keep stroke width constant regardless of size
|
|
14
|
+
* @param {string} [props.color='currentColor'] - Icon color (stroke color)
|
|
15
|
+
* @returns {React.ReactElement} SVG icon element
|
|
16
|
+
*/
|
|
17
|
+
declare const Heart: FoamIcon;
|
|
18
|
+
|
|
19
|
+
export { Heart };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { F as FoamIcon } from '../types-Dox7zwnl.js';
|
|
2
|
+
import 'react';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* @component @name Heart
|
|
6
|
+
* @description Foamicon SVG icon component, renders a `<svg>` element
|
|
7
|
+
* @preview 
|
|
8
|
+
* @see https://foamicons.com/icons/heart
|
|
9
|
+
*
|
|
10
|
+
* @param {object} props - Icon props extending SVGProps<SVGSVGElement>
|
|
11
|
+
* @param {number | string} [props.size=16] - Icon size (width and height)
|
|
12
|
+
* @param {number | string} [props.strokeWidth=1] - Stroke width
|
|
13
|
+
* @param {boolean} [props.absoluteStrokeWidth=false] - Keep stroke width constant regardless of size
|
|
14
|
+
* @param {string} [props.color='currentColor'] - Icon color (stroke color)
|
|
15
|
+
* @returns {React.ReactElement} SVG icon element
|
|
16
|
+
*/
|
|
17
|
+
declare const Heart: FoamIcon;
|
|
18
|
+
|
|
19
|
+
export { Heart };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"Heart.js"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkF5BYQSRA_cjs = require('../chunk-F5BYQSRA.cjs');
|
|
4
|
+
require('../chunk-BT732HOR.cjs');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
Object.defineProperty(exports, "HeartDuotone", {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function () { return chunkF5BYQSRA_cjs.HeartDuotone; }
|
|
11
|
+
});
|
|
12
|
+
//# sourceMappingURL=HeartDuotone.cjs.map
|
|
13
|
+
//# sourceMappingURL=HeartDuotone.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"HeartDuotone.cjs"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { F as FoamIcon } from '../types-Dox7zwnl.cjs';
|
|
2
|
+
import 'react';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* @component @name HeartDuotone
|
|
6
|
+
* @description Foamicon SVG icon component, renders a `<svg>` element
|
|
7
|
+
* @preview 
|
|
8
|
+
* @see https://foamicons.com/icons/heart-duotone
|
|
9
|
+
*
|
|
10
|
+
* @param {object} props - Icon props extending SVGProps<SVGSVGElement>
|
|
11
|
+
* @param {number | string} [props.size=16] - Icon size (width and height)
|
|
12
|
+
* @param {number | string} [props.strokeWidth=1] - Stroke width
|
|
13
|
+
* @param {boolean} [props.absoluteStrokeWidth=false] - Keep stroke width constant regardless of size
|
|
14
|
+
* @param {string} [props.color='currentColor'] - Icon color (stroke color)
|
|
15
|
+
* @returns {React.ReactElement} SVG icon element
|
|
16
|
+
*/
|
|
17
|
+
declare const HeartDuotone: FoamIcon;
|
|
18
|
+
|
|
19
|
+
export { HeartDuotone };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { F as FoamIcon } from '../types-Dox7zwnl.js';
|
|
2
|
+
import 'react';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* @component @name HeartDuotone
|
|
6
|
+
* @description Foamicon SVG icon component, renders a `<svg>` element
|
|
7
|
+
* @preview 
|
|
8
|
+
* @see https://foamicons.com/icons/heart-duotone
|
|
9
|
+
*
|
|
10
|
+
* @param {object} props - Icon props extending SVGProps<SVGSVGElement>
|
|
11
|
+
* @param {number | string} [props.size=16] - Icon size (width and height)
|
|
12
|
+
* @param {number | string} [props.strokeWidth=1] - Stroke width
|
|
13
|
+
* @param {boolean} [props.absoluteStrokeWidth=false] - Keep stroke width constant regardless of size
|
|
14
|
+
* @param {string} [props.color='currentColor'] - Icon color (stroke color)
|
|
15
|
+
* @returns {React.ReactElement} SVG icon element
|
|
16
|
+
*/
|
|
17
|
+
declare const HeartDuotone: FoamIcon;
|
|
18
|
+
|
|
19
|
+
export { HeartDuotone };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"HeartDuotone.js"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkJGDKMBYS_cjs = require('../chunk-JGDKMBYS.cjs');
|
|
4
|
+
require('../chunk-BT732HOR.cjs');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
Object.defineProperty(exports, "HeartFill", {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function () { return chunkJGDKMBYS_cjs.HeartFill; }
|
|
11
|
+
});
|
|
12
|
+
//# sourceMappingURL=HeartFill.cjs.map
|
|
13
|
+
//# sourceMappingURL=HeartFill.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"HeartFill.cjs"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { F as FoamIcon } from '../types-Dox7zwnl.cjs';
|
|
2
|
+
import 'react';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* @component @name HeartFill
|
|
6
|
+
* @description Foamicon SVG icon component, renders a `<svg>` element
|
|
7
|
+
* @preview 
|
|
8
|
+
* @see https://foamicons.com/icons/heart-fill
|
|
9
|
+
*
|
|
10
|
+
* @param {object} props - Icon props extending SVGProps<SVGSVGElement>
|
|
11
|
+
* @param {number | string} [props.size=16] - Icon size (width and height)
|
|
12
|
+
* @param {number | string} [props.strokeWidth=1] - Stroke width
|
|
13
|
+
* @param {boolean} [props.absoluteStrokeWidth=false] - Keep stroke width constant regardless of size
|
|
14
|
+
* @param {string} [props.color='currentColor'] - Icon color (stroke color)
|
|
15
|
+
* @returns {React.ReactElement} SVG icon element
|
|
16
|
+
*/
|
|
17
|
+
declare const HeartFill: FoamIcon;
|
|
18
|
+
|
|
19
|
+
export { HeartFill };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { F as FoamIcon } from '../types-Dox7zwnl.js';
|
|
2
|
+
import 'react';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* @component @name HeartFill
|
|
6
|
+
* @description Foamicon SVG icon component, renders a `<svg>` element
|
|
7
|
+
* @preview 
|
|
8
|
+
* @see https://foamicons.com/icons/heart-fill
|
|
9
|
+
*
|
|
10
|
+
* @param {object} props - Icon props extending SVGProps<SVGSVGElement>
|
|
11
|
+
* @param {number | string} [props.size=16] - Icon size (width and height)
|
|
12
|
+
* @param {number | string} [props.strokeWidth=1] - Stroke width
|
|
13
|
+
* @param {boolean} [props.absoluteStrokeWidth=false] - Keep stroke width constant regardless of size
|
|
14
|
+
* @param {string} [props.color='currentColor'] - Icon color (stroke color)
|
|
15
|
+
* @returns {React.ReactElement} SVG icon element
|
|
16
|
+
*/
|
|
17
|
+
declare const HeartFill: FoamIcon;
|
|
18
|
+
|
|
19
|
+
export { HeartFill };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"HeartFill.js"}
|