@cascivo/icons 0.3.0 → 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 CHANGED
@@ -10,7 +10,7 @@
10
10
  [![license](https://img.shields.io/npm/l/%40cascivo%2Ficons?style=flat-square&color=0079bf)](https://github.com/cascivo/cascivo/blob/main/LICENSE)
11
11
  ![types](https://img.shields.io/badge/types-included-0079bf?style=flat-square&logo=typescript&logoColor=white)
12
12
 
13
- [npm](https://www.npmjs.com/package/@cascivo/icons) · [cascivo.com](https://cascivo.com) · [Docs](https://docs.cascivo.com) · [Storybook](https://storybook.cascivo.com) · [GitHub](https://github.com/cascivo/cascivo)
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://docs.cascivo.com/icons)**.
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://docs.cascivo.com) · [Storybook](https://storybook.cascivo.com) · [GitHub](https://github.com/cascivo/cascivo) · AI agents: 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
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
  ({
@@ -3567,5 +3664,5 @@ declare const Activity: {
3567
3664
  displayName: string;
3568
3665
  };
3569
3666
  //#endregion
3570
- 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, 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 };
3571
3668
  //# sourceMappingURL=index.d.mts.map
@@ -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":";;;UAEiB,SAAA,SAAkB,IAAA,CAAK,aAAA,CAAc,aAAA;;EAEpD,IAAA;EAFyB;EAIzB,KAAA;EACA,SAAA;AAAA;;iBAIc,UAAA,CAAW,IAAA,UAAc,QAAA,EAAU,KAAA,CAAM,SAAA;EAAA;;;;KACQ,SAAA,mBAAS,GAAA,CAAA,OAAA;;;;;;;;;;;cCqB7D,MAAA;EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAiKD,SAAA,WAAoB,MAAM;;;;AAAtC;;;;AAAsC;AAoBtC;;;;cAAa,MAAA;EAAA;;;;KAID,SAAA,WAAoB,MAAM;;;UCrNrB,UAAA,SAAmB,cAAA,CAAe,eAAA;EFHxB;EEKzB,IAAA,EAAM,SAAA,GAAY,SAAA;EFLkC;EEOpD,IAAA;EFPiC;EESjC,IAAA;AAAA;;;;;;;;AFJS;AAIX;iBEYgB,KAAA;EAAQ,IAAA;EAAM,IAAA;EAAM,IAAA;EAAM,SAAA;EAAW,KAAA;EAAA,GAAU;AAAA,GAAS,UAAA,mBAAU,GAAA,CAAA,OAAA;AAAA,kBAAlE,KAAA;EAAA,IAAK,WAAA;AAAA;;;cCnBR,YAAA;EAAA;;;;;;;cAOA,cAAA;EAAA;;;;;;;cAOA,eAAA;EAAA;;;;;;;cAOA,OAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,eAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,cAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,eAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,gBAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,eAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cACA,QAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,GAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAiBA,IAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cACA,MAAA;EAAA;;;;;;;cACA,SAAA;EAAA;;;;;;;cAQA,SAAA;EAAA;;;;;;;cAOA,WAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cACA,SAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAIA,cAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAOA,MAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAOA,cAAA;EAAA;;;;;;;cAIA,eAAA;EAAA;;;;;;;cAIA,cAAA;EAAA;;;;;;;cAIA,eAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,eAAA;EAAA;;;;;;;cAIA,gBAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,cAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,cAAA;EAAA;;;;;;;cAIA,GAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAUA,MAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAQA,UAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAQA,YAAA;EAAA;;;;;;;cAOA,aAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAUA,MAAA;EAAA;;;;;;;cAUA,GAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cASA,SAAA;EAAA;;;;;;;cAQA,QAAA;EAAA;;;;;;;cAQA,cAAA;EAAA;;;;;;;cASA,UAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAOA,WAAA;EAAA;;;;;;;cAOA,WAAA;EAAA;;;;;;;cAOA,SAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAOA,gBAAA;EAAA;;;;;;;cAIA,iBAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAOA,SAAA;EAAA;;;;;;;cAOA,KAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,EAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAQA,MAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cACA,UAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAOA,UAAA;EAAA;;;;;;;cAIA,GAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,gBAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,eAAA;EAAA;;;;;;;cAIA,GAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cACA,MAAA;EAAA;;;;;;;cACA,WAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAQA,YAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAWA,QAAA;EAAA;;;;;;;cAUA,UAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,cAAA;EAAA;;;;;;;cAOA,SAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cASA,SAAA;EAAA;;;;;;;cAIA,cAAA;EAAA;;;;;;;cASA,KAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,GAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,cAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAOA,KAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cASA,KAAA;EAAA;;;;;;;cACA,KAAA;EAAA;;;;;;;cACA,UAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,iBAAA;EAAA;;;;;;;cAOA,KAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAWA,QAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAOA,KAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAOA,iBAAA;EAAA;;;;;;;cAOA,UAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAOA,SAAA;EAAA;;;;;;;cAOA,MAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAOA,SAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,GAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,cAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,cAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,aAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,YAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,EAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cACA,QAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAQA,SAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,WAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAQA,SAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,UAAA;EAAA;;;;;;;cAOA,WAAA;EAAA;;;;;;;cAQA,KAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAOA,cAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,SAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAWA,UAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAIA,EAAA;EAAA;;;;;;;cAIA,EAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAIA,OAAA;EAAA;;;;;;;;;cCpqDA,OAAA;AAAA,cAQA,WAAA;EAAA;;;;;;;cACA,SAAA;EAAA;;;;;;;cACA,WAAA;EAAA;;;;;;;cACA,YAAA;EAAA;;;;;;;cAEA,CAAA;EAAA;;;;;;;cAOA,KAAA;EAAA;;;;;;;cACA,IAAA;EAAA;;;;;;;cAOA,KAAA;EAAA;;;;;;;cAEA,WAAA;EAAA;;;;;;;cAQA,aAAA;EAAA;;;;;;;cAQA,WAAA;EAAA;;;;;;;cAOA,IAAA;EAAA;;;;;;;cASA,UAAA;EAAA;;;;;;;cAOA,SAAA;EAAA;;;;;;;cAOA,OAAA;EAAA;;;;;;;cAOA,SAAA;EAAA;;;;;;;cAQA,MAAA;EAAA;;;;;;;cAOA,IAAA;EAAA;;;;;;;cAOA,QAAA;EAAA;;;;;;;cAQA,MAAA;EAAA;;;;;;;cAQA,YAAA;EAAA;;;;;;;cASA,IAAA;EAAA;;;;;;;cAOA,KAAA;EAAA;;;;;;;cAOA,QAAA;EAAA;;;;;;;cAOA,IAAA;EAAA;;;;;;;cAOA,QAAA;EAAA;;;;;;;cASA,KAAA;EAAA;;;;;;;cAOA,GAAA;EAAA;;;;;;;cAOA,MAAA;EAAA;;;;;;;cAOA,GAAA;EAAA;;;;;;;cAcA,IAAA;EAAA;;;;;;;cACA,IAAA;EAAA;;;;;;;cAQA,cAAA;EAAA;;;;;;;cAQA,IAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAcA,IAAA;EAAA;;;;;;;cAOA,IAAA;EAAA;;;;;;;cAOA,SAAA;EAAA;;;;;;;cASA,KAAA;EAAA;;;;;;;cASA,IAAA;EAAA;;;;;;;cASA,UAAA;EAAA;;;;;;;cAQA,MAAA;EAAA;;;;;;;cAQA,MAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAOA,MAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cASA,KAAA;EAAA;;;;;;;cAQA,IAAA;EAAA;;;;;;;cAOA,MAAA;EAAA;;;;;;;cASA,QAAA;EAAA;;;;;;;cAOA,QAAA;EAAA;;;;;;;cAQA,GAAA;EAAA;;;;;;;cAMA,MAAA;EAAA;;;;;;;cACA,UAAA;EAAA;;;;;;;cAOA,KAAA;EAAA;;;;;;;cAOA,GAAA;EAAA;;;;;;;cAOA,GAAA;EAAA;;;;;;;cACA,MAAA;EAAA;;;;;;;cAQA,QAAA;EAAA"}
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" })] }));
@@ -1359,6 +1386,6 @@ const Layers = createIcon("Layers", /* @__PURE__ */ jsxs(Fragment, { children: [
1359
1386
  ] }));
1360
1387
  const Activity = createIcon("Activity", /* @__PURE__ */ jsx("polyline", { points: "22 12 18 12 15 21 9 3 6 12 2 12" }));
1361
1388
  //#endregion
1362
- 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, 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 };
1363
1390
 
1364
1391
  //# sourceMappingURL=index.mjs.map