@cascivo/icons 0.2.8 → 0.3.1
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 +30 -3
- package/dist/index.d.mts +131 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +98 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -3
- package/readme.body.md +28 -1
- package/src/glyphs.css +265 -0
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[](https://github.com/cascivo/cascivo/blob/main/LICENSE)
|
|
11
11
|

|
|
12
12
|
|
|
13
|
-
[npm](https://www.npmjs.com/package/@cascivo/icons) · [cascivo.com](https://cascivo.com) · [Docs](https://
|
|
13
|
+
[npm](https://www.npmjs.com/package/@cascivo/icons) · [cascivo.com](https://cascivo.com) · [Docs](https://cascivo.com/docs) · [Storybook](https://storybook.cascivo.com) · [GitHub](https://github.com/cascivo/cascivo)
|
|
14
14
|
|
|
15
15
|
</div>
|
|
16
16
|
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
A set of **~440** React SVG icon components that inherit the cascivo token system — stroked 24×24 `currentColor` geometry, token-driven sizing, and tree-shakeable named exports.
|
|
20
20
|
|
|
21
|
-
Browse and search the full catalog — with click-to-copy imports and live size/color/theme previews — in the **[/icons gallery](https://
|
|
21
|
+
Browse and search the full catalog — with click-to-copy imports and live size/color/theme previews — in the **[/icons gallery](https://cascivo.com/icons)**.
|
|
22
22
|
|
|
23
23
|
## Usage
|
|
24
24
|
|
|
@@ -45,6 +45,33 @@ button svg {
|
|
|
45
45
|
|
|
46
46
|
Import only the icons you use — named exports are individually tree-shakeable, so bundle cost scales with usage, not catalog size.
|
|
47
47
|
|
|
48
|
+
## Pure-CSS glyphs (experimental)
|
|
49
|
+
|
|
50
|
+
A small, opt-in set of UI glyphs rendered with **zero SVG** — a `background: currentColor` element clipped by `clip-path: shape()`. They inherit text color like the SVG icons, resize via one custom property, and can **morph between states with a CSS transition and no JavaScript**.
|
|
51
|
+
|
|
52
|
+
```tsx
|
|
53
|
+
import '@cascivo/icons/glyphs.css' // import once, anywhere in the app
|
|
54
|
+
import { Glyph } from '@cascivo/icons'
|
|
55
|
+
|
|
56
|
+
// static glyph
|
|
57
|
+
;<Glyph name="chevron-down" size={20} aria-label="Expand" />
|
|
58
|
+
|
|
59
|
+
// zero-JS morph: the shape animates when `open` flips
|
|
60
|
+
;<Glyph name="chevron-toggle" open={isOpen} />
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Or use the class directly, without React:
|
|
64
|
+
|
|
65
|
+
```html
|
|
66
|
+
<span class="cascivo-glyph" data-glyph="check"></span>
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Set size with `--cascivo-glyph-size` (default `1.5rem`); color follows `currentColor`.
|
|
70
|
+
|
|
71
|
+
v1 glyphs: `chevron-{down,up,left,right}`, `x`, `check`, `plus`, `minus`, `menu`, `arrow-{right,left,up,down}`, and the `chevron-toggle` morph. Geometry is authored in `packages/icons/src/glyphs/spec.ts` and expanded to outlines by `scripts/icons/generate-glyphs.mjs` (`pnpm glyphs:generate`).
|
|
72
|
+
|
|
73
|
+
**Support & caveats.** `clip-path: shape()` is [Baseline 2026](https://developer.mozilla.org/en-US/docs/Web/CSS/basic-shape/shape) (Chrome/Edge 135+, Safari 18.4+, Firefox 148+); the stylesheet gates all painting behind `@supports`, so older browsers render nothing rather than a broken box — use the SVG icons where you need a wider floor. A `forced-colors` fallback keeps glyphs visible in Windows High Contrast. Because the paint is a background color, glyphs **do not print** by default (browsers strip backgrounds) — prefer the SVG icons in print-critical surfaces.
|
|
74
|
+
|
|
48
75
|
## Catalog & generation
|
|
49
76
|
|
|
50
77
|
The catalog combines the original hand-authored [Feather](https://github.com/feathericons/feather)-derived icons with the [chromicons](https://github.com/lifeomic/chromicons.com) set, both MIT-licensed (see [`NOTICE`](https://github.com/cascivo/cascivo/blob/main/NOTICE)). The chromicons are vendored as SVG source under `packages/icons/svg/` and transformed into `createIcon` exports by `scripts/icons/generate.mjs` (run via `pnpm icons:generate` / `pnpm regen`) — owned code, no runtime dependency. On a name collision the existing export always wins, so the surface is purely additive.
|
|
@@ -59,6 +86,6 @@ pnpm add @cascivo/icons
|
|
|
59
86
|
|
|
60
87
|
---
|
|
61
88
|
|
|
62
|
-
[cascivo.com](https://cascivo.com) · [Docs](https://
|
|
89
|
+
[cascivo.com](https://cascivo.com) · [Docs](https://cascivo.com/docs) · [Storybook](https://storybook.cascivo.com) · [GitHub](https://github.com/cascivo/cascivo) · AI agents: read [`llms.txt`](https://cascivo.com/llms.txt) (install steps + component index, plain text) or use [`@cascivo/mcp`](https://github.com/cascivo/cascivo/tree/main/packages/mcp) and [`registry.json`](https://github.com/cascivo/cascivo/blob/main/registry.json) · MIT
|
|
63
90
|
|
|
64
91
|
<div align="center"><a href="https://cascivo.com"><img src="https://cascivo.com/favicon.svg" width="28" height="28" alt="cascivo"></a></div>
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SVGAttributes } from "react";
|
|
1
|
+
import { HTMLAttributes, SVGAttributes } from "react";
|
|
2
2
|
|
|
3
3
|
//#region src/create-icon.d.ts
|
|
4
4
|
interface IconProps extends Omit<SVGAttributes<SVGSVGElement>, 'color'> {
|
|
@@ -18,6 +18,103 @@ declare function createIcon(name: string, children: React.ReactNode): {
|
|
|
18
18
|
displayName: string;
|
|
19
19
|
};
|
|
20
20
|
//#endregion
|
|
21
|
+
//#region src/glyphs/spec.d.ts
|
|
22
|
+
/**
|
|
23
|
+
* Static glyphs. Order is stable (generator emits in this order). Scope is the
|
|
24
|
+
* straight-stroke set the outline generator draws exactly; curved glyphs (search
|
|
25
|
+
* ring, circle, info) and filled discs (dots) need a separate primitive and are
|
|
26
|
+
* deferred.
|
|
27
|
+
*/
|
|
28
|
+
declare const GLYPHS: readonly [{
|
|
29
|
+
readonly name: "chevron-down";
|
|
30
|
+
readonly strokes: readonly [readonly [readonly [6, 9], readonly [12, 15], readonly [18, 9]]];
|
|
31
|
+
}, {
|
|
32
|
+
readonly name: "chevron-up";
|
|
33
|
+
readonly strokes: readonly [readonly [readonly [6, 15], readonly [12, 9], readonly [18, 15]]];
|
|
34
|
+
}, {
|
|
35
|
+
readonly name: "chevron-left";
|
|
36
|
+
readonly strokes: readonly [readonly [readonly [15, 6], readonly [9, 12], readonly [15, 18]]];
|
|
37
|
+
}, {
|
|
38
|
+
readonly name: "chevron-right";
|
|
39
|
+
readonly strokes: readonly [readonly [readonly [9, 6], readonly [15, 12], readonly [9, 18]]];
|
|
40
|
+
}, {
|
|
41
|
+
readonly name: "x";
|
|
42
|
+
readonly strokes: readonly [readonly [readonly [6, 6], readonly [18, 18]], readonly [readonly [18, 6], readonly [6, 18]]];
|
|
43
|
+
}, {
|
|
44
|
+
readonly name: "check";
|
|
45
|
+
readonly strokes: readonly [readonly [readonly [5, 12.5], readonly [10, 17.5], readonly [19.5, 6.5]]];
|
|
46
|
+
}, {
|
|
47
|
+
readonly name: "plus";
|
|
48
|
+
readonly strokes: readonly [readonly [readonly [12, 6], readonly [12, 18]], readonly [readonly [6, 12], readonly [18, 12]]];
|
|
49
|
+
}, {
|
|
50
|
+
readonly name: "minus";
|
|
51
|
+
readonly strokes: readonly [readonly [readonly [6, 12], readonly [18, 12]]];
|
|
52
|
+
}, {
|
|
53
|
+
readonly name: "menu";
|
|
54
|
+
readonly strokes: readonly [readonly [readonly [4, 7], readonly [20, 7]], readonly [readonly [4, 12], readonly [20, 12]], readonly [readonly [4, 17], readonly [20, 17]]];
|
|
55
|
+
}, {
|
|
56
|
+
readonly name: "arrow-right";
|
|
57
|
+
readonly strokes: readonly [readonly [readonly [4, 12], readonly [20, 12]], readonly [readonly [13, 5], readonly [20, 12], readonly [13, 19]]];
|
|
58
|
+
}, {
|
|
59
|
+
readonly name: "arrow-left";
|
|
60
|
+
readonly strokes: readonly [readonly [readonly [20, 12], readonly [4, 12]], readonly [readonly [11, 5], readonly [4, 12], readonly [11, 19]]];
|
|
61
|
+
}, {
|
|
62
|
+
readonly name: "arrow-up";
|
|
63
|
+
readonly strokes: readonly [readonly [readonly [12, 20], readonly [12, 4]], readonly [readonly [5, 11], readonly [12, 4], readonly [19, 11]]];
|
|
64
|
+
}, {
|
|
65
|
+
readonly name: "arrow-down";
|
|
66
|
+
readonly strokes: readonly [readonly [readonly [12, 4], readonly [12, 20]], readonly [readonly [5, 13], readonly [12, 20], readonly [19, 13]]];
|
|
67
|
+
}];
|
|
68
|
+
type GlyphName = (typeof GLYPHS)[number]['name'];
|
|
69
|
+
/**
|
|
70
|
+
* Morphs: a `[data-glyph]` value that animates via `transition: clip-path` when
|
|
71
|
+
* the element gains `[data-state="open"]`. Both shapes MUST share command
|
|
72
|
+
* structure (same subpath and point counts) — the generator hard-fails otherwise.
|
|
73
|
+
*
|
|
74
|
+
* Structure-match is necessary but NOT sufficient: a ~90° rotation pair
|
|
75
|
+
* (chevron-right↔down) shares structure yet interpolates through coincident
|
|
76
|
+
* outline points (a degenerate zero-length arc → invalid shape). Only reflection-
|
|
77
|
+
* style pairs whose points travel without crossing qualify (chevron down↔up), and
|
|
78
|
+
* every morph must be screenshot-verified across the transition before shipping.
|
|
79
|
+
* `from`/`to` reference glyph names above.
|
|
80
|
+
*/
|
|
81
|
+
declare const MORPHS: readonly [{
|
|
82
|
+
readonly name: "chevron-toggle";
|
|
83
|
+
readonly from: "chevron-down";
|
|
84
|
+
readonly to: "chevron-up";
|
|
85
|
+
}];
|
|
86
|
+
type MorphName = (typeof MORPHS)[number]['name'];
|
|
87
|
+
//#endregion
|
|
88
|
+
//#region src/glyph.d.ts
|
|
89
|
+
interface GlyphProps extends HTMLAttributes<HTMLSpanElement> {
|
|
90
|
+
/** Which glyph to render — a static glyph or a morph. */
|
|
91
|
+
name: GlyphName | MorphName;
|
|
92
|
+
/** Edge length; a number is treated as px. Sets `--cascivo-glyph-size` (CSS default: 1.5rem). */
|
|
93
|
+
size?: number | string;
|
|
94
|
+
/** Morph glyphs only — drives the `[data-state="open"]` transition. */
|
|
95
|
+
open?: boolean;
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Pure-CSS glyph. Renders an empty `<span>` that the `@cascivo/icons/glyphs.css`
|
|
99
|
+
* stylesheet paints via `clip-path: shape()` over `background: currentColor`, so
|
|
100
|
+
* it inherits the surrounding text color and resizes via `--cascivo-glyph-size`.
|
|
101
|
+
* That stylesheet must be imported once by the app; without it the span is
|
|
102
|
+
* invisible. Decorative by default (`aria-hidden`); pass `aria-label` to expose it.
|
|
103
|
+
*
|
|
104
|
+
* Hook-free and RSC-safe — no client boundary required.
|
|
105
|
+
*/
|
|
106
|
+
declare function Glyph({
|
|
107
|
+
name,
|
|
108
|
+
size,
|
|
109
|
+
open,
|
|
110
|
+
className,
|
|
111
|
+
style,
|
|
112
|
+
...props
|
|
113
|
+
}: GlyphProps): import("react").JSX.Element;
|
|
114
|
+
declare namespace Glyph {
|
|
115
|
+
var displayName: string;
|
|
116
|
+
}
|
|
117
|
+
//#endregion
|
|
21
118
|
//#region src/generated.d.ts
|
|
22
119
|
declare const AccessPolicy: {
|
|
23
120
|
({
|
|
@@ -1099,6 +1196,38 @@ declare const Gift: {
|
|
|
1099
1196
|
}: IconProps): import("react").JSX.Element;
|
|
1100
1197
|
displayName: string;
|
|
1101
1198
|
};
|
|
1199
|
+
declare const GitBranch: {
|
|
1200
|
+
({
|
|
1201
|
+
size,
|
|
1202
|
+
color,
|
|
1203
|
+
...props
|
|
1204
|
+
}: IconProps): import("react").JSX.Element;
|
|
1205
|
+
displayName: string;
|
|
1206
|
+
};
|
|
1207
|
+
declare const GitCommit: {
|
|
1208
|
+
({
|
|
1209
|
+
size,
|
|
1210
|
+
color,
|
|
1211
|
+
...props
|
|
1212
|
+
}: IconProps): import("react").JSX.Element;
|
|
1213
|
+
displayName: string;
|
|
1214
|
+
};
|
|
1215
|
+
declare const GitMerge: {
|
|
1216
|
+
({
|
|
1217
|
+
size,
|
|
1218
|
+
color,
|
|
1219
|
+
...props
|
|
1220
|
+
}: IconProps): import("react").JSX.Element;
|
|
1221
|
+
displayName: string;
|
|
1222
|
+
};
|
|
1223
|
+
declare const GitPullRequest: {
|
|
1224
|
+
({
|
|
1225
|
+
size,
|
|
1226
|
+
color,
|
|
1227
|
+
...props
|
|
1228
|
+
}: IconProps): import("react").JSX.Element;
|
|
1229
|
+
displayName: string;
|
|
1230
|
+
};
|
|
1102
1231
|
declare const GlassStraw: {
|
|
1103
1232
|
({
|
|
1104
1233
|
size,
|
|
@@ -3535,5 +3664,5 @@ declare const Activity: {
|
|
|
3535
3664
|
displayName: string;
|
|
3536
3665
|
};
|
|
3537
3666
|
//#endregion
|
|
3538
|
-
export { AccessPolicy, Activity, ActivityFolder, ActivityMonitor, Airplay, Alcohol, AlertCircle, AlertOctagon, AlertTriangle, AlignCenter, AlignJustify, AlignLeft, AlignRight, Ambulance, Anchor, Aperture, Apple, Archive, ArrowDown, ArrowDown2, ArrowDown3, ArrowDownCircle, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeft2, ArrowLeft3, ArrowLeftCircle, ArrowRight, ArrowRight2, ArrowRight3, ArrowRightCircle, ArrowUp, ArrowUp2, ArrowUp3, ArrowUpCircle, ArrowUpLeft, ArrowUpRight, AtSymbol, Award, BandAid, Bank, BarChart, BarChart2, Battery, BatteryCharging, Beaker, Bell, BellOff, Bold, BoneJoint, Book, BookOpen, Bookmark, Bowl, Box, Brain, Bread, Briefcase, Broccoli, Bullhorn, Burger, Calculator, Calendar, Camera, CameraOff, Cancer, CapsulePills, Cast, Check, Check2, Check3, CheckCircle, CheckFile, CheckList, CheckSquare, ChevronDown, ChevronDown2, ChevronLeft, ChevronLeft2, ChevronRight, ChevronRight2, ChevronUp, ChevronUp2, Chroma, Chrome, Circle, ClearList, Clipboard, Clock, ClockForward, ClockRewind, Cloud, CloudDrizzle, CloudLightning, CloudOff, CloudRain, CloudSnow, Code, CodeReview, Codepen, Coffee, Column, Command, Compass, Container, ControlPolicy, Copy, CornerDownLeft, CornerDownLeft2, CornerLeftDown, CornerLeftDown2, CornerLeftUp, CornerLeftUp2, CornerRightDown, CornerRightDown2, CornerRightUp, CornerRightUp2, CornerUpRight, CornerUpRight2, Cpu, CreditCard, Crop, Crosshair, CryptoKey, Dashboard, Database, Delete, Dice, Disc, Disguise, DollarSign, Domain, DomainRecord, Download, DownloadCloud, Droplet, Edit, Edit2, ExternalLink, Eye, EyeGlasses, EyeOff, Facebook, FastForward, FemaleSymbol, File, FileText, Filter, Fire, Flag, Floss, Folder, FolderMinus, FolderOpen, FolderPlus, FontSize, Fork, Function, Gauge, Gauge2, Gif, Gif2, Gift, GlassStraw, Globe, Grid, HardDrive, Hash, Headphones, Heart, HeartCheck, HeartCircle, HeartFolder, HeartHand, HeartList, Heatmap, Helix, Helix2, HelpCircle, Hexagon, Hexagons, Hexagons2, Home, Hook, HorizontalArrows, HorizontalArrows2, HospitalSign, Host, HostAgent, type IconProps, Image, Inbox, Info, Instagram, Italic, Iv, Key, KeyLock, KeyboardDown, Kidney, Layers, Layout, Leaf, Library, LifeAscent, LifeBuoy, Lifeology, Lightbulb, LineHeight, Link, Link2, LinkBroken, Linkedin, List, Liver, Liver2, Loader, Loader2, Lock, LogOut, Login, Mail, MailOpen, MaleSymbol, Map, MapPin, Mask, MaxDate, Maximize, Maximize2, MedicalBriefcase, Menu, MessageCircle, MessageSquare, MessageThumbsUp, Mic, MicOff, Microscope, Minimize, Minimize2, Minus, Minus2, Minus3, MinusCircle, MinusSquare, Molecule, MoneyBag, Monitor, Mood, Moon, MoreHorizontal, MoreVertical, MortarBoard, MousePointer, Move, Music, Navigation, Navigation2, Needle, NodeMesh, NodeTree, NumberList, Octagon, OfficeBuilding, Oncoprint, Package, PaintCan, Paperclip, PasswordPolicy, Pause, PauseCircle, PenTool, Percent, Phc, Phone, PhoneCall, PhoneForwarded, PhoneIncoming, PhoneMissed, PhoneOff, PhoneOutgoing, PieChart, Pill, Plane, Planet, Plant, PlayCircle, PlotCurve, PlotNeedle, Plus, Plus2, Plus3, PlusCircle, PlusSquare, Pocket, Power, PrecisionWellness, Print, Procedure, Prostate, Quote, Radar, Radio, RectangleH, RectangleV, Rectangles, RectanglesOverlay, RefreshCcw, RefreshCw, Repeat, Repository, ResetDate, Rewind, Ribbon, Root, RotateCcw, RotateCw, Rss, Ruler, Running, Save, Scatter, Scissors, ScreenShare, ScreenShareOff, Search, Send, Server, Settings, Share, Share2, Shield, ShieldOff, ShoppingBag, ShoppingCart, Shuffle, Sidebar, Sitting, SkipBack, SkipForward, Skull, Slack, Slash, Sliders, Smartphone, Smile, Soda, SoundWave, Spaceship, Sparkle, SparkleCircle, SparkleFile, SparkleFilter, SparkleHeart, SparkleOutput, SparkleRefresh, SparkleSelect, Speaker, Split, Square, StackedBar, Star, Steps, Stethoscope, StopCircle, Strikethrough, Sun, Sunrise, Sunset, SurvivalCurve, Tablet, Tag, Target, Terminal, TestTube, Thermometer, ThumbsDown, ThumbsUp, Thyroid, ToggleLeft, ToggleRight, Tool, Transaction, Trash, Trash2, Trello, TrendingDown, TrendingUp, Triangle, Trophy, Truck, Tv, Twitch, Twitter, Type, Umbrella, Unavailable, Underline, Unlock, Upload, UploadCloud, User, UserCheck, UserKey, UserMinus, UserPlus, UserShield, UserX, Users, UsersShield, VERSION, Versions, VerticalArrows, Video, Video2, Video2Off, Virus, Voicemail, Volume, Volume1, Volume2, VolumeX, Watch, Watch2, Webhook, Wheelchair, Wifi, WifiOff, Wind, X, X2, X3, XCircle, XOctogon, XSquare, YouTube, Zap, ZapOff, ZoomIn, ZoomOut, createIcon };
|
|
3667
|
+
export { AccessPolicy, Activity, ActivityFolder, ActivityMonitor, Airplay, Alcohol, AlertCircle, AlertOctagon, AlertTriangle, AlignCenter, AlignJustify, AlignLeft, AlignRight, Ambulance, Anchor, Aperture, Apple, Archive, ArrowDown, ArrowDown2, ArrowDown3, ArrowDownCircle, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeft2, ArrowLeft3, ArrowLeftCircle, ArrowRight, ArrowRight2, ArrowRight3, ArrowRightCircle, ArrowUp, ArrowUp2, ArrowUp3, ArrowUpCircle, ArrowUpLeft, ArrowUpRight, AtSymbol, Award, BandAid, Bank, BarChart, BarChart2, Battery, BatteryCharging, Beaker, Bell, BellOff, Bold, BoneJoint, Book, BookOpen, Bookmark, Bowl, Box, Brain, Bread, Briefcase, Broccoli, Bullhorn, Burger, Calculator, Calendar, Camera, CameraOff, Cancer, CapsulePills, Cast, Check, Check2, Check3, CheckCircle, CheckFile, CheckList, CheckSquare, ChevronDown, ChevronDown2, ChevronLeft, ChevronLeft2, ChevronRight, ChevronRight2, ChevronUp, ChevronUp2, Chroma, Chrome, Circle, ClearList, Clipboard, Clock, ClockForward, ClockRewind, Cloud, CloudDrizzle, CloudLightning, CloudOff, CloudRain, CloudSnow, Code, CodeReview, Codepen, Coffee, Column, Command, Compass, Container, ControlPolicy, Copy, CornerDownLeft, CornerDownLeft2, CornerLeftDown, CornerLeftDown2, CornerLeftUp, CornerLeftUp2, CornerRightDown, CornerRightDown2, CornerRightUp, CornerRightUp2, CornerUpRight, CornerUpRight2, Cpu, CreditCard, Crop, Crosshair, CryptoKey, Dashboard, Database, Delete, Dice, Disc, Disguise, DollarSign, Domain, DomainRecord, Download, DownloadCloud, Droplet, Edit, Edit2, ExternalLink, Eye, EyeGlasses, EyeOff, Facebook, FastForward, FemaleSymbol, File, FileText, Filter, Fire, Flag, Floss, Folder, FolderMinus, FolderOpen, FolderPlus, FontSize, Fork, Function, Gauge, Gauge2, Gif, Gif2, Gift, GitBranch, GitCommit, GitMerge, GitPullRequest, GlassStraw, Globe, Glyph, type GlyphName, type GlyphProps, Grid, HardDrive, Hash, Headphones, Heart, HeartCheck, HeartCircle, HeartFolder, HeartHand, HeartList, Heatmap, Helix, Helix2, HelpCircle, Hexagon, Hexagons, Hexagons2, Home, Hook, HorizontalArrows, HorizontalArrows2, HospitalSign, Host, HostAgent, type IconProps, Image, Inbox, Info, Instagram, Italic, Iv, Key, KeyLock, KeyboardDown, Kidney, Layers, Layout, Leaf, Library, LifeAscent, LifeBuoy, Lifeology, Lightbulb, LineHeight, Link, Link2, LinkBroken, Linkedin, List, Liver, Liver2, Loader, Loader2, Lock, LogOut, Login, Mail, MailOpen, MaleSymbol, Map, MapPin, Mask, MaxDate, Maximize, Maximize2, MedicalBriefcase, Menu, MessageCircle, MessageSquare, MessageThumbsUp, Mic, MicOff, Microscope, Minimize, Minimize2, Minus, Minus2, Minus3, MinusCircle, MinusSquare, Molecule, MoneyBag, Monitor, Mood, Moon, MoreHorizontal, MoreVertical, type MorphName, MortarBoard, MousePointer, Move, Music, Navigation, Navigation2, Needle, NodeMesh, NodeTree, NumberList, Octagon, OfficeBuilding, Oncoprint, Package, PaintCan, Paperclip, PasswordPolicy, Pause, PauseCircle, PenTool, Percent, Phc, Phone, PhoneCall, PhoneForwarded, PhoneIncoming, PhoneMissed, PhoneOff, PhoneOutgoing, PieChart, Pill, Plane, Planet, Plant, PlayCircle, PlotCurve, PlotNeedle, Plus, Plus2, Plus3, PlusCircle, PlusSquare, Pocket, Power, PrecisionWellness, Print, Procedure, Prostate, Quote, Radar, Radio, RectangleH, RectangleV, Rectangles, RectanglesOverlay, RefreshCcw, RefreshCw, Repeat, Repository, ResetDate, Rewind, Ribbon, Root, RotateCcw, RotateCw, Rss, Ruler, Running, Save, Scatter, Scissors, ScreenShare, ScreenShareOff, Search, Send, Server, Settings, Share, Share2, Shield, ShieldOff, ShoppingBag, ShoppingCart, Shuffle, Sidebar, Sitting, SkipBack, SkipForward, Skull, Slack, Slash, Sliders, Smartphone, Smile, Soda, SoundWave, Spaceship, Sparkle, SparkleCircle, SparkleFile, SparkleFilter, SparkleHeart, SparkleOutput, SparkleRefresh, SparkleSelect, Speaker, Split, Square, StackedBar, Star, Steps, Stethoscope, StopCircle, Strikethrough, Sun, Sunrise, Sunset, SurvivalCurve, Tablet, Tag, Target, Terminal, TestTube, Thermometer, ThumbsDown, ThumbsUp, Thyroid, ToggleLeft, ToggleRight, Tool, Transaction, Trash, Trash2, Trello, TrendingDown, TrendingUp, Triangle, Trophy, Truck, Tv, Twitch, Twitter, Type, Umbrella, Unavailable, Underline, Unlock, Upload, UploadCloud, User, UserCheck, UserKey, UserMinus, UserPlus, UserShield, UserX, Users, UsersShield, VERSION, Versions, VerticalArrows, Video, Video2, Video2Off, Virus, Voicemail, Volume, Volume1, Volume2, VolumeX, Watch, Watch2, Webhook, Wheelchair, Wifi, WifiOff, Wind, X, X2, X3, XCircle, XOctogon, XSquare, YouTube, Zap, ZapOff, ZoomIn, ZoomOut, createIcon };
|
|
3539
3668
|
//# sourceMappingURL=index.d.mts.map
|
package/dist/index.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/create-icon.tsx","../src/generated.tsx","../src/index.tsx"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/create-icon.tsx","../src/glyphs/spec.ts","../src/glyph.tsx","../src/generated.tsx","../src/index.tsx"],"mappings":"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"}
|
package/dist/index.mjs
CHANGED
|
@@ -22,6 +22,33 @@ function createIcon(name, children) {
|
|
|
22
22
|
return Icon;
|
|
23
23
|
}
|
|
24
24
|
//#endregion
|
|
25
|
+
//#region src/glyph.tsx
|
|
26
|
+
/**
|
|
27
|
+
* Pure-CSS glyph. Renders an empty `<span>` that the `@cascivo/icons/glyphs.css`
|
|
28
|
+
* stylesheet paints via `clip-path: shape()` over `background: currentColor`, so
|
|
29
|
+
* it inherits the surrounding text color and resizes via `--cascivo-glyph-size`.
|
|
30
|
+
* That stylesheet must be imported once by the app; without it the span is
|
|
31
|
+
* invisible. Decorative by default (`aria-hidden`); pass `aria-label` to expose it.
|
|
32
|
+
*
|
|
33
|
+
* Hook-free and RSC-safe — no client boundary required.
|
|
34
|
+
*/
|
|
35
|
+
function Glyph({ name, size, open, className, style, ...props }) {
|
|
36
|
+
const cls = className ? `cascivo-glyph ${className}` : "cascivo-glyph";
|
|
37
|
+
const sizedStyle = size == null ? style : {
|
|
38
|
+
...style,
|
|
39
|
+
"--cascivo-glyph-size": typeof size === "number" ? `${size}px` : size
|
|
40
|
+
};
|
|
41
|
+
return /* @__PURE__ */ jsx("span", {
|
|
42
|
+
className: cls,
|
|
43
|
+
"data-glyph": name,
|
|
44
|
+
"data-state": open ? "open" : void 0,
|
|
45
|
+
"aria-hidden": props["aria-label"] ? void 0 : true,
|
|
46
|
+
...props,
|
|
47
|
+
style: sizedStyle
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
Glyph.displayName = "Glyph";
|
|
51
|
+
//#endregion
|
|
25
52
|
//#region src/generated.tsx
|
|
26
53
|
const AccessPolicy = createIcon("AccessPolicy", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("path", { d: "M12.246 22H18a2.006 2.006 0 002-2V8l-6-6H6a2.006 2.006 0 00-2 2v4.523" }), /* @__PURE__ */ jsx("path", { d: "M14 2v6h6M16 13h-3.246M16 17h-2.815M10 9h-.96M7.745 18.6l.6 4.4h-4.9l.6-4.4h0a3.593 3.593 0 01-1.6-2.9 3.4 3.4 0 016.8 0 3.17 3.17 0 01-1.5 2.9h0" })] }));
|
|
27
54
|
const ActivityFolder = createIcon("ActivityFolder", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("path", { d: "M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z" }), /* @__PURE__ */ jsx("path", { d: "M15.698 13.5h-1.479l-1.11 3.328-2.218-6.656-1.11 3.328H8.302" })] }));
|
|
@@ -263,6 +290,76 @@ const Gauge2 = createIcon("Gauge2", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
|
263
290
|
const Gif = createIcon("Gif", /* @__PURE__ */ jsx("path", { d: "M7.2,19.031V20a.945.945,0,0,0,.887,1A1.065,1.065,0,0,0,8.2,21H20a.945.945,0,0,0,1-.887A.71.71,0,0,0,21,20V8.5H15.5V3H8.2a.946.946,0,0,0-1,.887A1.065,1.065,0,0,0,7.2,4V8.336M15.5,3l2.75,2.75L21,8.5M6.714,16.038a2.9,2.9,0,0,1-3.582-1.423A2.414,2.414,0,0,1,5,11.57a3.41,3.41,0,0,1,1.67-.072m.035,2.828v1.715m3.026-4.617v4.759m3.007-4.759-.02,4.759m.02-4.759h2.454m-2.464,2.9h2.464" }));
|
|
264
291
|
const Gif2 = createIcon("Gif2", /* @__PURE__ */ jsx("path", { d: "M9.368,14.235a2.9,2.9,0,0,1-3.583-1.423,2.414,2.414,0,0,1,1.87-3.045A3.411,3.411,0,0,1,9.325,9.7m.035,2.828v1.715m3.026-4.617V14.38m2.987,0,.02-4.759m0,0h2.454m-2.464,2.9h2.464M21,15.752V8.1a1.562,1.562,0,0,0-1.561-1.562H4.561A1.562,1.562,0,0,0,3,8.1v7.654a1.562,1.562,0,0,0,1.561,1.562H19.439A1.562,1.562,0,0,0,21,15.752Z" }));
|
|
265
292
|
const Gift = createIcon("Gift", /* @__PURE__ */ jsx("path", { d: "M19.2,12v9H4.8V12M3,7.5H21V12H3ZM12,21V7.5m0,0H7.95a2.25,2.25,0,1,1,0-4.5C11.1,3,12,7.5,12,7.5Zm0,0h4.05a2.25,2.25,0,0,0,0-4.5C12.9,3,12,7.5,12,7.5Z" }));
|
|
293
|
+
const GitBranch = createIcon("GitBranch", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
294
|
+
/* @__PURE__ */ jsx("line", {
|
|
295
|
+
x1: "6",
|
|
296
|
+
y1: "3",
|
|
297
|
+
x2: "6",
|
|
298
|
+
y2: "15"
|
|
299
|
+
}),
|
|
300
|
+
/* @__PURE__ */ jsx("circle", {
|
|
301
|
+
cx: "18",
|
|
302
|
+
cy: "6",
|
|
303
|
+
r: "3"
|
|
304
|
+
}),
|
|
305
|
+
/* @__PURE__ */ jsx("circle", {
|
|
306
|
+
cx: "6",
|
|
307
|
+
cy: "18",
|
|
308
|
+
r: "3"
|
|
309
|
+
}),
|
|
310
|
+
/* @__PURE__ */ jsx("path", { d: "M18 9a9 9 0 0 1-9 9" })
|
|
311
|
+
] }));
|
|
312
|
+
const GitCommit = createIcon("GitCommit", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
313
|
+
/* @__PURE__ */ jsx("circle", {
|
|
314
|
+
cx: "12",
|
|
315
|
+
cy: "12",
|
|
316
|
+
r: "4"
|
|
317
|
+
}),
|
|
318
|
+
/* @__PURE__ */ jsx("line", {
|
|
319
|
+
x1: "1.05",
|
|
320
|
+
y1: "12",
|
|
321
|
+
x2: "7",
|
|
322
|
+
y2: "12"
|
|
323
|
+
}),
|
|
324
|
+
/* @__PURE__ */ jsx("line", {
|
|
325
|
+
x1: "17.01",
|
|
326
|
+
y1: "12",
|
|
327
|
+
x2: "22.96",
|
|
328
|
+
y2: "12"
|
|
329
|
+
})
|
|
330
|
+
] }));
|
|
331
|
+
const GitMerge = createIcon("GitMerge", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
332
|
+
/* @__PURE__ */ jsx("circle", {
|
|
333
|
+
cx: "18",
|
|
334
|
+
cy: "18",
|
|
335
|
+
r: "3"
|
|
336
|
+
}),
|
|
337
|
+
/* @__PURE__ */ jsx("circle", {
|
|
338
|
+
cx: "6",
|
|
339
|
+
cy: "6",
|
|
340
|
+
r: "3"
|
|
341
|
+
}),
|
|
342
|
+
/* @__PURE__ */ jsx("path", { d: "M6 21V9a9 9 0 0 0 9 9" })
|
|
343
|
+
] }));
|
|
344
|
+
const GitPullRequest = createIcon("GitPullRequest", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
345
|
+
/* @__PURE__ */ jsx("circle", {
|
|
346
|
+
cx: "18",
|
|
347
|
+
cy: "18",
|
|
348
|
+
r: "3"
|
|
349
|
+
}),
|
|
350
|
+
/* @__PURE__ */ jsx("circle", {
|
|
351
|
+
cx: "6",
|
|
352
|
+
cy: "6",
|
|
353
|
+
r: "3"
|
|
354
|
+
}),
|
|
355
|
+
/* @__PURE__ */ jsx("path", { d: "M13 6h3a2 2 0 0 1 2 2v7" }),
|
|
356
|
+
/* @__PURE__ */ jsx("line", {
|
|
357
|
+
x1: "6",
|
|
358
|
+
y1: "9",
|
|
359
|
+
x2: "6",
|
|
360
|
+
y2: "21"
|
|
361
|
+
})
|
|
362
|
+
] }));
|
|
266
363
|
const GlassStraw = createIcon("GlassStraw", /* @__PURE__ */ jsx("path", { d: "M18.536,14.4a15.41,15.41,0,0,1-6.9.446,20.031,20.031,0,0,0-3.772-.525,18.5,18.5,0,0,0-2.483.079M6.748,7.354,4.759,7.348,5.925,21H17.856L19.241,7.391,6.748,7.354m8.4-.006.035,7.646m-.035-7.646L19.822,3" }));
|
|
267
364
|
const HardDrive = createIcon("HardDrive", /* @__PURE__ */ jsx("path", { d: "M3,15.5m18,.164V13.8a2.007,2.007,0,0,0-2.015-2H5.015A2.007,2.007,0,0,0,3,13.8v1.7M7.727,4.806h8.561a1.8,1.8,0,0,1,1.61,1L21,12v5.4a1.8,1.8,0,0,1-1.8,1.8H4.814a1.8,1.8,0,0,1-1.8-1.8V12l3.1-6.2A1.8,1.8,0,0,1,7.727,4.806Zm-.85,10.857H7.74" }));
|
|
268
365
|
const Hash = createIcon("Hash", /* @__PURE__ */ jsx("path", { d: "M10.45,2.75l-2,9-2,9m10.6-18-2,9-2,9m7.7-12.1h-17m16,6.7h-17" }));
|
|
@@ -1289,6 +1386,6 @@ const Layers = createIcon("Layers", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
|
1289
1386
|
] }));
|
|
1290
1387
|
const Activity = createIcon("Activity", /* @__PURE__ */ jsx("polyline", { points: "22 12 18 12 15 21 9 3 6 12 2 12" }));
|
|
1291
1388
|
//#endregion
|
|
1292
|
-
export { AccessPolicy, Activity, ActivityFolder, ActivityMonitor, Airplay, Alcohol, AlertCircle, AlertOctagon, AlertTriangle, AlignCenter, AlignJustify, AlignLeft, AlignRight, Ambulance, Anchor, Aperture, Apple, Archive, ArrowDown, ArrowDown2, ArrowDown3, ArrowDownCircle, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeft2, ArrowLeft3, ArrowLeftCircle, ArrowRight, ArrowRight2, ArrowRight3, ArrowRightCircle, ArrowUp, ArrowUp2, ArrowUp3, ArrowUpCircle, ArrowUpLeft, ArrowUpRight, AtSymbol, Award, BandAid, Bank, BarChart, BarChart2, Battery, BatteryCharging, Beaker, Bell, BellOff, Bold, BoneJoint, Book, BookOpen, Bookmark, Bowl, Box, Brain, Bread, Briefcase, Broccoli, Bullhorn, Burger, Calculator, Calendar, Camera, CameraOff, Cancer, CapsulePills, Cast, Check, Check2, Check3, CheckCircle, CheckFile, CheckList, CheckSquare, ChevronDown, ChevronDown2, ChevronLeft, ChevronLeft2, ChevronRight, ChevronRight2, ChevronUp, ChevronUp2, Chroma, Chrome, Circle, ClearList, Clipboard, Clock, ClockForward, ClockRewind, Cloud, CloudDrizzle, CloudLightning, CloudOff, CloudRain, CloudSnow, Code, CodeReview, Codepen, Coffee, Column, Command, Compass, Container, ControlPolicy, Copy, CornerDownLeft, CornerDownLeft2, CornerLeftDown, CornerLeftDown2, CornerLeftUp, CornerLeftUp2, CornerRightDown, CornerRightDown2, CornerRightUp, CornerRightUp2, CornerUpRight, CornerUpRight2, Cpu, CreditCard, Crop, Crosshair, CryptoKey, Dashboard, Database, Delete, Dice, Disc, Disguise, DollarSign, Domain, DomainRecord, Download, DownloadCloud, Droplet, Edit, Edit2, ExternalLink, Eye, EyeGlasses, EyeOff, Facebook, FastForward, FemaleSymbol, File, FileText, Filter, Fire, Flag, Floss, Folder, FolderMinus, FolderOpen, FolderPlus, FontSize, Fork, Function, Gauge, Gauge2, Gif, Gif2, Gift, GlassStraw, Globe, Grid, HardDrive, Hash, Headphones, Heart, HeartCheck, HeartCircle, HeartFolder, HeartHand, HeartList, Heatmap, Helix, Helix2, HelpCircle, Hexagon, Hexagons, Hexagons2, Home, Hook, HorizontalArrows, HorizontalArrows2, HospitalSign, Host, HostAgent, Image, Inbox, Info, Instagram, Italic, Iv, Key, KeyLock, KeyboardDown, Kidney, Layers, Layout, Leaf, Library, LifeAscent, LifeBuoy, Lifeology, Lightbulb, LineHeight, Link, Link2, LinkBroken, Linkedin, List, Liver, Liver2, Loader, Loader2, Lock, LogOut, Login, Mail, MailOpen, MaleSymbol, Map, MapPin, Mask, MaxDate, Maximize, Maximize2, MedicalBriefcase, Menu, MessageCircle, MessageSquare, MessageThumbsUp, Mic, MicOff, Microscope, Minimize, Minimize2, Minus, Minus2, Minus3, MinusCircle, MinusSquare, Molecule, MoneyBag, Monitor, Mood, Moon, MoreHorizontal, MoreVertical, MortarBoard, MousePointer, Move, Music, Navigation, Navigation2, Needle, NodeMesh, NodeTree, NumberList, Octagon, OfficeBuilding, Oncoprint, Package, PaintCan, Paperclip, PasswordPolicy, Pause, PauseCircle, PenTool, Percent, Phc, Phone, PhoneCall, PhoneForwarded, PhoneIncoming, PhoneMissed, PhoneOff, PhoneOutgoing, PieChart, Pill, Plane, Planet, Plant, PlayCircle, PlotCurve, PlotNeedle, Plus, Plus2, Plus3, PlusCircle, PlusSquare, Pocket, Power, PrecisionWellness, Print, Procedure, Prostate, Quote, Radar, Radio, RectangleH, RectangleV, Rectangles, RectanglesOverlay, RefreshCcw, RefreshCw, Repeat, Repository, ResetDate, Rewind, Ribbon, Root, RotateCcw, RotateCw, Rss, Ruler, Running, Save, Scatter, Scissors, ScreenShare, ScreenShareOff, Search, Send, Server, Settings, Share, Share2, Shield, ShieldOff, ShoppingBag, ShoppingCart, Shuffle, Sidebar, Sitting, SkipBack, SkipForward, Skull, Slack, Slash, Sliders, Smartphone, Smile, Soda, SoundWave, Spaceship, Sparkle, SparkleCircle, SparkleFile, SparkleFilter, SparkleHeart, SparkleOutput, SparkleRefresh, SparkleSelect, Speaker, Split, Square, StackedBar, Star, Steps, Stethoscope, StopCircle, Strikethrough, Sun, Sunrise, Sunset, SurvivalCurve, Tablet, Tag, Target, Terminal, TestTube, Thermometer, ThumbsDown, ThumbsUp, Thyroid, ToggleLeft, ToggleRight, Tool, Transaction, Trash, Trash2, Trello, TrendingDown, TrendingUp, Triangle, Trophy, Truck, Tv, Twitch, Twitter, Type, Umbrella, Unavailable, Underline, Unlock, Upload, UploadCloud, User, UserCheck, UserKey, UserMinus, UserPlus, UserShield, UserX, Users, UsersShield, VERSION, Versions, VerticalArrows, Video, Video2, Video2Off, Virus, Voicemail, Volume, Volume1, Volume2, VolumeX, Watch, Watch2, Webhook, Wheelchair, Wifi, WifiOff, Wind, X, X2, X3, XCircle, XOctogon, XSquare, YouTube, Zap, ZapOff, ZoomIn, ZoomOut, createIcon };
|
|
1389
|
+
export { AccessPolicy, Activity, ActivityFolder, ActivityMonitor, Airplay, Alcohol, AlertCircle, AlertOctagon, AlertTriangle, AlignCenter, AlignJustify, AlignLeft, AlignRight, Ambulance, Anchor, Aperture, Apple, Archive, ArrowDown, ArrowDown2, ArrowDown3, ArrowDownCircle, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeft2, ArrowLeft3, ArrowLeftCircle, ArrowRight, ArrowRight2, ArrowRight3, ArrowRightCircle, ArrowUp, ArrowUp2, ArrowUp3, ArrowUpCircle, ArrowUpLeft, ArrowUpRight, AtSymbol, Award, BandAid, Bank, BarChart, BarChart2, Battery, BatteryCharging, Beaker, Bell, BellOff, Bold, BoneJoint, Book, BookOpen, Bookmark, Bowl, Box, Brain, Bread, Briefcase, Broccoli, Bullhorn, Burger, Calculator, Calendar, Camera, CameraOff, Cancer, CapsulePills, Cast, Check, Check2, Check3, CheckCircle, CheckFile, CheckList, CheckSquare, ChevronDown, ChevronDown2, ChevronLeft, ChevronLeft2, ChevronRight, ChevronRight2, ChevronUp, ChevronUp2, Chroma, Chrome, Circle, ClearList, Clipboard, Clock, ClockForward, ClockRewind, Cloud, CloudDrizzle, CloudLightning, CloudOff, CloudRain, CloudSnow, Code, CodeReview, Codepen, Coffee, Column, Command, Compass, Container, ControlPolicy, Copy, CornerDownLeft, CornerDownLeft2, CornerLeftDown, CornerLeftDown2, CornerLeftUp, CornerLeftUp2, CornerRightDown, CornerRightDown2, CornerRightUp, CornerRightUp2, CornerUpRight, CornerUpRight2, Cpu, CreditCard, Crop, Crosshair, CryptoKey, Dashboard, Database, Delete, Dice, Disc, Disguise, DollarSign, Domain, DomainRecord, Download, DownloadCloud, Droplet, Edit, Edit2, ExternalLink, Eye, EyeGlasses, EyeOff, Facebook, FastForward, FemaleSymbol, File, FileText, Filter, Fire, Flag, Floss, Folder, FolderMinus, FolderOpen, FolderPlus, FontSize, Fork, Function, Gauge, Gauge2, Gif, Gif2, Gift, GitBranch, GitCommit, GitMerge, GitPullRequest, GlassStraw, Globe, Glyph, Grid, HardDrive, Hash, Headphones, Heart, HeartCheck, HeartCircle, HeartFolder, HeartHand, HeartList, Heatmap, Helix, Helix2, HelpCircle, Hexagon, Hexagons, Hexagons2, Home, Hook, HorizontalArrows, HorizontalArrows2, HospitalSign, Host, HostAgent, Image, Inbox, Info, Instagram, Italic, Iv, Key, KeyLock, KeyboardDown, Kidney, Layers, Layout, Leaf, Library, LifeAscent, LifeBuoy, Lifeology, Lightbulb, LineHeight, Link, Link2, LinkBroken, Linkedin, List, Liver, Liver2, Loader, Loader2, Lock, LogOut, Login, Mail, MailOpen, MaleSymbol, Map, MapPin, Mask, MaxDate, Maximize, Maximize2, MedicalBriefcase, Menu, MessageCircle, MessageSquare, MessageThumbsUp, Mic, MicOff, Microscope, Minimize, Minimize2, Minus, Minus2, Minus3, MinusCircle, MinusSquare, Molecule, MoneyBag, Monitor, Mood, Moon, MoreHorizontal, MoreVertical, MortarBoard, MousePointer, Move, Music, Navigation, Navigation2, Needle, NodeMesh, NodeTree, NumberList, Octagon, OfficeBuilding, Oncoprint, Package, PaintCan, Paperclip, PasswordPolicy, Pause, PauseCircle, PenTool, Percent, Phc, Phone, PhoneCall, PhoneForwarded, PhoneIncoming, PhoneMissed, PhoneOff, PhoneOutgoing, PieChart, Pill, Plane, Planet, Plant, PlayCircle, PlotCurve, PlotNeedle, Plus, Plus2, Plus3, PlusCircle, PlusSquare, Pocket, Power, PrecisionWellness, Print, Procedure, Prostate, Quote, Radar, Radio, RectangleH, RectangleV, Rectangles, RectanglesOverlay, RefreshCcw, RefreshCw, Repeat, Repository, ResetDate, Rewind, Ribbon, Root, RotateCcw, RotateCw, Rss, Ruler, Running, Save, Scatter, Scissors, ScreenShare, ScreenShareOff, Search, Send, Server, Settings, Share, Share2, Shield, ShieldOff, ShoppingBag, ShoppingCart, Shuffle, Sidebar, Sitting, SkipBack, SkipForward, Skull, Slack, Slash, Sliders, Smartphone, Smile, Soda, SoundWave, Spaceship, Sparkle, SparkleCircle, SparkleFile, SparkleFilter, SparkleHeart, SparkleOutput, SparkleRefresh, SparkleSelect, Speaker, Split, Square, StackedBar, Star, Steps, Stethoscope, StopCircle, Strikethrough, Sun, Sunrise, Sunset, SurvivalCurve, Tablet, Tag, Target, Terminal, TestTube, Thermometer, ThumbsDown, ThumbsUp, Thyroid, ToggleLeft, ToggleRight, Tool, Transaction, Trash, Trash2, Trello, TrendingDown, TrendingUp, Triangle, Trophy, Truck, Tv, Twitch, Twitter, Type, Umbrella, Unavailable, Underline, Unlock, Upload, UploadCloud, User, UserCheck, UserKey, UserMinus, UserPlus, UserShield, UserX, Users, UsersShield, VERSION, Versions, VerticalArrows, Video, Video2, Video2Off, Virus, Voicemail, Volume, Volume1, Volume2, VolumeX, Watch, Watch2, Webhook, Wheelchair, Wifi, WifiOff, Wind, X, X2, X3, XCircle, XOctogon, XSquare, YouTube, Zap, ZapOff, ZoomIn, ZoomOut, createIcon };
|
|
1293
1390
|
|
|
1294
1391
|
//# sourceMappingURL=index.mjs.map
|